Skip to content

Instantly share code, notes, and snippets.

@lomse
Created October 9, 2018 09:12
Show Gist options
  • Save lomse/a9ea9d29474538bd89ca395ffdd1a541 to your computer and use it in GitHub Desktop.
Save lomse/a9ea9d29474538bd89ca395ffdd1a541 to your computer and use it in GitHub Desktop.
Styled Components
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