Created
October 9, 2018 09:12
-
-
Save lomse/a9ea9d29474538bd89ca395ffdd1a541 to your computer and use it in GitHub Desktop.
Styled Components
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 { render } from 'react-dom' | |
import styled from 'styled-components' | |
import TodoList from './components/TodoList' | |
import TodoForm from './components/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> | |
) | |
render(<App />, document.getElementById('app')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment