You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
643 B
24 lines
643 B
import React, {Component} from "react";
|
|
import {Button, Container, Content, H3, Header, Icon, Left, Right, Text, Title} from "native-base";
|
|
import {StatusBar, StyleSheet} from 'react-native';
|
|
import DefaultHeader from '../components/DefaultHeader';
|
|
|
|
class Home extends Component {
|
|
render() {
|
|
return (
|
|
<Container>
|
|
<DefaultHeader title="Home" navigation={this.props.navigation}/>
|
|
|
|
<Content padder>
|
|
<Text>
|
|
Content goes here
|
|
</Text>
|
|
|
|
</Content>
|
|
</Container>
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
export default Home; |