import React from 'react'; import { Col, Button, Form, FormGroup, Label, Input, FormText } from 'reactstrap'; const Example = (props) => { return ( <Form> <FormGroup row> <Label for="exampleEmail" sm={2}>Email</Label> <Col sm={10}> <Input type="email" name="email" id="exampleEmail" placeholder="with a placeholder" /> </Col> </FormGroup> <FormGroup row> <Label for="examplePassword" sm={2}>Password<