Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. class TodoApp extends Component {
  2. render() {
  3. return (
  4. <div className="todos">
  5. <Grid columns={1} className="ui center aligned">
  6. <Grid.Row>
  7. <Grid.Column className="todo-body" width={12}>
  8. <h2>Simple Todo</h2>
  9. <TodoInput />
  10. <div id="display-todos">
  11. <DisplayTodos className="align-left" />
  12. </div>
  13. </Grid.Column>
  14. </Grid.Row>
  15. </Grid>
  16. </div>
  17. );
  18. }
  19. }
  20.  
  21. export default TodoApp;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement