From 8dac2661f2eea04f10c6da5a35c566760cd5a9d8 Mon Sep 17 00:00:00 2001 From: Arthi-chaud Date: Sat, 6 Aug 2022 10:36:29 +0200 Subject: [PATCH] Front: Navigation: Add constants for public and protected routes --- front/Navigation.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 front/Navigation.tsx diff --git a/front/Navigation.tsx b/front/Navigation.tsx new file mode 100644 index 0000000..e32c4b8 --- /dev/null +++ b/front/Navigation.tsx @@ -0,0 +1,13 @@ +import { createNativeStackNavigator } from '@react-navigation/native-stack'; +import React from 'react'; +import HomeView from './views/HomeView'; + +export const Stack = createNativeStackNavigator(); + +export const protectedRoutes = + +; + +export const publicRoutes = + +; \ No newline at end of file