Skip to content

Commit

Permalink
fix: add extra tabs back
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardLindhout committed Jan 29, 2024
1 parent 5c61e38 commit 78eb0c9
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,20 +141,20 @@ function App({
>
<ExploreWitHookExamples />
</TabScreen>
{/*{showFlightTab && (*/}
{/* <TabScreen*/}
{/* label="Flights"*/}
{/* icon={showIcons ? 'airplane' : undefined}*/}
{/* >*/}
{/* <ScreenWithText text={'Flights'} />*/}
{/* </TabScreen>*/}
{/*)}*/}
{/*<TabScreen*/}
{/* label="Trips"*/}
{/* icon={showIcons ? 'bag-personal' : undefined}*/}
{/*>*/}
{/* <ScreenWithText text={'Trips'} />*/}
{/*</TabScreen>*/}
{showFlightTab && (
<TabScreen
label="Flights"
icon={showIcons ? 'airplane' : undefined}
>
<ScreenWithText text={'Flights'} />
</TabScreen>
)}
<TabScreen
label="Trips"
icon={showIcons ? 'bag-personal' : undefined}
>
<ScreenWithText text={'Trips'} />
</TabScreen>
</Tabs>
) : (
<Tabs {...tabProps}>
Expand Down

0 comments on commit 78eb0c9

Please sign in to comment.