diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-08-30 21:21:17 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-08-30 21:21:17 +0200 |
commit | 509785982a1b4ac9ab145bac90d97be7044228c4 (patch) | |
tree | 2ab074c254f0f88788b103a400ce0e308c044ec4 /app/(tabs)/_layout.tsx | |
parent | 7103a17512b77b816d7daa972b7fc14bdcab5e6b (diff) |
Init alert list page
Diffstat (limited to 'app/(tabs)/_layout.tsx')
-rw-r--r-- | app/(tabs)/_layout.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx index fcc94db..97e98de 100644 --- a/app/(tabs)/_layout.tsx +++ b/app/(tabs)/_layout.tsx @@ -23,15 +23,15 @@ export default function TabLayout() { ), }} /> - {/*<Tabs.Screen - name="explore" + <Tabs.Screen + name="alerts" options={{ title: 'Alerts', tabBarIcon: ({ color, focused }) => ( <TabBarIcon name={focused ? 'map' : 'map-outline'} color={color} /> ), }} - />*/} + /> </Tabs> ); } |