Advertisement
raulghm

Artículo 3 SE 5

Feb 17th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React from 'react';
  2. import { StyleSheet, View } from 'react-native';
  3. import Header from './components/Header';
  4. import TodoList from './components/TodoList';
  5.  
  6. const styles = StyleSheet.create({
  7.   container: {
  8.     flex: 1,
  9.     backgroundColor: '#fff',
  10.     marginTop: 24,
  11.   },
  12. });
  13.  
  14.  
  15. export default class App extends React.Component {
  16.   render() {
  17.     return (
  18.       <View style={styles.container}>
  19.         <Header title="Todo App" />
  20.         <TodoList />
  21.       </View>
  22.     );
  23.   }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement