-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
40 lines (37 loc) · 1.25 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { useEffect, useState } from "react";
import { StyleSheet, Text, View } from 'react-native';
import { createDrawerNavigator } from '@react-navigation/drawer';
import { NavigationContainer } from '@react-navigation/native';
import QuestionsScreen from "./questions_screen";
import { pullTeams } from "./TBA_Interactor";
const Drawer = createDrawerNavigator();
export default function App() {
const [teams, setTeams] = useState([{name: "Paly Robotics", number: 8}])
useEffect(async () => {
setTeams(await pullTeams("2022camb"));
}, [])
return (
<NavigationContainer>
<Drawer.Navigator initialRouteName="Paly Robotics">
{
// <Drawer.Screen name={"Paly Robotics"}>
// {props => <Questions name={"Paly Robotics"} number={8} />}
// </Drawer.Screen>
teams.map((team, i) => (
<Drawer.Screen name={`${team.name} | ${team.number}`} key={i}>
{props => <QuestionsScreen name={team.name} number={team.number} />}
</Drawer.Screen>
))
}
</Drawer.Navigator>
</NavigationContainer>
)
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});