Last active
July 13, 2018 00:39
-
-
Save wwwhatley/9cc9cbfa129c267aee873d6e1e0c87b1 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, {Component} from 'react'; | |
import styled from 'styled-components'; | |
import {Form, Input, Title, Button} from './theme.js'; | |
class App extends Component { | |
render() { | |
return ( | |
<div> | |
<Title>Form</Title> | |
<Form> | |
<Input type="text" name="email" placeholder="Email" /> | |
<Input type="password" name="password" placeholder="Password" /> | |
<Button type="submit">Submit</Button> | |
</Form> | |
</div> | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment