film-exif/src/App.js

36 lines
882 B
JavaScript
Raw Normal View History

2018-03-30 21:30:22 -04:00
import { BrowserRouter } from 'inferno-router';
2018-03-30 22:17:58 -04:00
import { Jumbotron } from './components/Bootstrap';
import { Button, Form, FormGroup, Input, Label } from './components/Bootstrap/Form';
import { Container, Row } from './components/Bootstrap/Grid';
2018-03-29 16:28:14 -04:00
2018-03-30 21:30:22 -04:00
const App = () => (
<BrowserRouter>
2018-03-30 22:17:58 -04:00
<Jumbotron>
<Container className="App">
<Row>
<header className="App-header">
<h1>Welcome to Inferno</h1>
</header>
</Row>
<Row>
<p className="App-intro">
To get started, edit <code>src/App.js</code> and save to reload.
</p>
</Row>
<Row>
<Form>
<FormGroup>
<Label htmlFor="brand">Brand</Label>
<Input type="text" id="brand" name="brand" />
</FormGroup>
<Button color="primary" type="submit">Save</Button>
</Form>
</Row>
</Container>
</Jumbotron>
</BrowserRouter>
);
2018-03-29 16:28:14 -04:00
export default App;