Skip to content

Instantly share code, notes, and snippets.

@lomse
Created October 9, 2018 09:13
Show Gist options
  • Save lomse/bed79c7420c1738490a5db172cce4849 to your computer and use it in GitHub Desktop.
Save lomse/bed79c7420c1738490a5db172cce4849 to your computer and use it in GitHub Desktop.
Styled Components
import React from 'react'
import styled from 'styled-components'
import TodoItem from './TodoItem'
const StyledUl = styled.ul`
padding: 0
`
const TodoList = () => (
<StyledUl>
<TodoItem id="todo-1" title="Learn React.js" />
<TodoItem id="todo-2" title="Learn Vue.js" />
<TodoItem id="todo-3" title="Learn Laravel" />
</StyledUl>
)
export default TodoList
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment