### Input

```js
<Form.Control type="email" placeholder="Enter email" />
```

### Textarea

```js
<Form.Control as="textarea" rows={3} placeholder="Enter a description" />
```

### Checkbox

```js
<Form.Group controlId="exampleTextarea">
    <Form.Check custom type="checkbox" label="Check me out" />
</Form.Group>
```

### Composing a basic form

```js
import { Form, Button } from 'frontend-react-components';

<Form>
  <Form.Group controlId="formBasicEmail">
    <Form.Label>Email address</Form.Label>
    <Form.Control type="email" placeholder="Enter email" />
    <Form.Text className="text-muted">
      We'll never share your email with anyone else.
    </Form.Text>
  </Form.Group>

  <Form.Group controlId="formBasicPassword">
    <Form.Label>Password</Form.Label>
    <Form.Control type="password" placeholder="Password" />
  </Form.Group>
  <Form.Group controlId="formBasicChecbox">
    <Form.Check custom type="checkbox" label="Check me out" />
  </Form.Group>
  <Button variant="primary" type="submit">
    Submit
  </Button>
</Form>;
```
