basic layout of main page

- consists of the navbar, chat, and adspace components
This commit is contained in:
Arjun Patel
2018-04-21 15:18:34 -07:00
parent ec7102e73b
commit b03f301aa5
7 changed files with 156 additions and 20 deletions
+2 -4
View File
@@ -17,7 +17,7 @@ import {
// Imported screens to route through
import Home from './screens/home.js';
import Loading from './screens/loading.js';
import Main from './screens/main.js'
type Props = {};
export default class App extends Component<Props> {
render() {
@@ -26,9 +26,7 @@ export default class App extends Component<Props> {
<Stack key='root' style={{paddingTop: 54}}>
<Scene key='home' component={Home} title="Home" hideNavBar={true} />
<Scene key='loading' component={Loading} title='Loading' />
{/*
<Scene key='chat' component={Chat} title='Chat' hideNavBar={false} />
*/}
<Scene key='main' component={Main} title='Main' hideNavBar={true} />
</Stack>
</Router>
);