Created
September 2, 2021 14:58
Revisions
-
warodri-sendbird created this gist
Sep 2, 2021 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ return ( <NavigationContainer> <AppContext.Provider value={initialState}> <Stack.Navigator> <Stack.Screen name="Lobby" component={Lobby} options={{ ...defaultHeaderOptions }} /> <Stack.Screen name="Chat" component={Chat} options={{ ...defaultHeaderOptions }} /> <Stack.Screen name="Member" component={Member} options={{ ...defaultHeaderOptions }} /> <Stack.Screen name="Invite" component={Invite} options={{ ...defaultHeaderOptions }} /> <Stack.Screen name="Profile" component={Profile} options={{ ...defaultHeaderOptions }} /> </Stack.Navigator> </AppContext.Provider> </NavigationContainer> );