-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
40 lines (34 loc) · 1 KB
/
index.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
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View
} from 'react-native';
import Home from "./Components/Test/Home"
import ProfileDetail from "/Users/quynhngan/KitDream/Components/Test/Login/ProfileDetail.js"
import Contact from "/Users/quynhngan/KitDream/Components/Test/Login/Contact.js"
import Tabbar from "./Components/Test/Tabbar"
import Recipe from "./Components/Test/Recipe/Recipe"
import Search from "./Components/Test/Search/Search"
import HomeScreen from "./Components/Test/HomeScreen"
import LoginForm from "./Components/Test/Login/LoginForm"
import OrderHistory from "/Users/quynhngan/KitDream/Components/Test/Login/OrderHistory.js";
console.disableYellowBox = true;
export default class KitDream extends Component {
render() {
return (
<View>
<Tabbar/>
<ProfileDetail/>
<OrderHistory/>
</View>
);
}
}
AppRegistry.registerComponent('KitDream', () => Tabbar);