Skip to content

Commit

Permalink
fix: tab children type
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Jul 18, 2023
1 parent 6a7e9e8 commit bb5c252
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/page/TabBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ import {

import { primary } from '../../theme/colors';
import { tryValidateSync } from '../../helpers/yup';
import Section, { SectionElement } from './Section';
import Section from './Section';

export interface TabBarProps {
header: string;
tabs: Array<{
label: string;
children: SectionElement | SectionElement[];
children: React.ReactNode;
path: string;
}>;
originalPath: string;
Expand Down

0 comments on commit bb5c252

Please sign in to comment.