Skip to content

Commit

Permalink
Demographics page is done and pushes data to firestore
Browse files Browse the repository at this point in the history
  • Loading branch information
arikamat committed Apr 1, 2023
1 parent 9b96db9 commit 2089c4c
Show file tree
Hide file tree
Showing 7 changed files with 7,504 additions and 6,012 deletions.
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"tabWidth": 4,
"useTabs": true
}
4 changes: 3 additions & 1 deletion App.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import LoginScreen from "./screens/LoginScreen";
import HomeScreen from "./screens/HomeScreen";

import Demographic from "./screens/Demographic";
const Stack = createNativeStackNavigator();

export default function App() {
Expand All @@ -18,6 +18,8 @@ export default function App() {
component={LoginScreen}
/>
<Stack.Screen name="Home" component={HomeScreen} />
<Stack.Screen name="Demographic" component={Demographic} />

</Stack.Navigator>
</NavigationContainer>
);
Expand Down
Loading

0 comments on commit 2089c4c

Please sign in to comment.