Skip to content

Instantly share code, notes, and snippets.

@lomse
Created October 9, 2018 09:20
Show Gist options
  • Save lomse/f2700f81dc18dcaadf71f1291d47c8d6 to your computer and use it in GitHub Desktop.
Save lomse/f2700f81dc18dcaadf71f1291d47c8d6 to your computer and use it in GitHub Desktop.
Styled Component
import React from "react"
import styled from 'styled-components'
const FormInput = styled.input`
width: 235px;
outline: none;
font-size: 13px;
padding-top: 7px;
padding-bottom: 7px;
padding-left: 10px;
`
const TodoForm = () => (
<form>
<FormInput placeholder="Enter new todo" />
</form>
)
export default TodoForm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment