Skip to content

Instantly share code, notes, and snippets.

@carl0zen
Last active September 2, 2020 10:23
Show Gist options
  • Save carl0zen/f3b342565e1a41cf4488a626e696e26e to your computer and use it in GitHub Desktop.
Save carl0zen/f3b342565e1a41cf4488a626e696e26e to your computer and use it in GitHub Desktop.
import React from "react"
import styled from "styled-components"
// Simple form component
const Input = styled.input`
background: green
`
const FormWrapper = () => <Input placeholder="hola" />
// What this compiles to:
<input placeholder="hola" class="dxLjPX">Send</input>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment