forked from Khawoat6/todolist-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
43 lines (37 loc) · 1.38 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
41
42
43
import React from 'react';
import { View,Text,Image ,StyleSheet,TouchableOpacity, Alert} from 'react-native';
import { LinearGradient } from 'expo-linear-gradient';
import {Card} from 'react-native-shadow-cards';
import { Container, Header, Title, Button, Icon } from 'native-base';
import Main1 from './components/main'
// import Main2 from './components/main2'
// import Setting from './components/Setting'
// import Account from './components/Account'
// import AccountLogin from './components/AccountLogin'
import Today from './components/Today'
import StackNavigation from './components/StackNavigation'
import SwitchNavigator from './components/SwitchNavigator'
import Page1 from './components/Page1'
import Setting from './components/Setting'
import Account from './components/Account'
import AccountLogin from './components/AccountLogin'
import Forest from './components/Forest'
import Page3 from './components/Page3'
import Time from './components/Time'
import Today2 from './components/Today2'
import Graph from './components/Graph'
export default class App extends React.Component {
render() {
return (
<View style={{flex:1}}>
{/* <Today/> */}
{/* <Page1/> */}
{/* <Main1/> */}
{/* <Account/> */}
{/* <Page3/> */}
<SwitchNavigator/>
{/* <Today2/> */}
</View>
);
}
}