Add npmrc

This commit is contained in:
Timothy Warren 2018-04-03 11:50:56 -04:00
parent 6493719ca6
commit b9ab994a14
2 changed files with 18 additions and 1 deletions

1
.npmrc Normal file
View File

@ -0,0 +1 @@
registry=https://registry.yarnpkg.com/

View File

@ -2,7 +2,14 @@ import { BrowserRouter } from 'inferno-router';
import QueryString from 'query-string';
import { Jumbotron } from './components/Bootstrap';
import { Button, Form, FormGroup, Input, Label } from './components/Bootstrap/Form';
import {
Button,
Form,
FormGroup,
Input,
Label,
Select
} from './components/Bootstrap/Form';
import { Container, Row } from './components/Bootstrap/Grid';
const App = () => (
@ -26,6 +33,15 @@ const App = () => (
<Label htmlFor="brand">Brand</Label>
<Input type="text" id="brand" name="brand" />
</FormGroup>
<FormGroup>
<Label htmlFor="filmFormat">Film Format</Label>
<select className="custom-select" id="filmFormat" name="filmFormat">
<option value="110">110</option>
<option value="120">120</option>
<option value="127">127</option>
<option value="135">135</option>
</select>
</FormGroup>
<Button color="primary" type="submit">Save</Button>
</Form>
</Row>