Last active
September 2, 2020 10:23
-
-
Save carl0zen/f3b342565e1a41cf4488a626e696e26e to your computer and use it in GitHub Desktop.
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 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