Guest User

Untitled

a guest
Nov 21st, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. class Main extends Component {
  2. render() {
  3. return (
  4. <View style={styles.main}>
  5. <Route exact path="/" component={Home} />
  6. <Route exact path="/about" component={About} />
  7. <Route exact path="/other" component={Other} />
  8. <Route exact path="/profile" component={Profile} />
  9. <Footer style={{ height: 200 }} />
  10. </View>
  11. )
  12. }
  13. }
Add Comment
Please, Sign In to add comment