Skip to content

Instantly share code, notes, and snippets.

@wwwhatley
Last active July 13, 2018 00:39
Show Gist options
  • Save wwwhatley/9cc9cbfa129c267aee873d6e1e0c87b1 to your computer and use it in GitHub Desktop.
Save wwwhatley/9cc9cbfa129c267aee873d6e1e0c87b1 to your computer and use it in GitHub Desktop.
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