Created
October 11, 2018 00:41
-
-
Save lomse/451d9d9d88e5793bee59906709259e0b to your computer and use it in GitHub Desktop.
App.jsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import styled from 'styled-components' | |
import TodoList from './TodoList' | |
import TodoForm from './TodoForm' | |
const Container = styled.div` | |
width: 250px; | |
margin: 10px auto; | |
font-family: Arial, Helvetica, sans-serif; | |
font-size: 13px | |
` | |
const App = () => ( | |
<Container> | |
<TodoForm /> | |
<TodoList /> | |
</Container> | |
) | |
export default App |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment