rsnext/examples/form-handler/components/Social.js
Frieder Bluemle 9281f4651a Fix GitHub spelling (#7024)
Just a minor typo fix: `Github` -> `GitHub`.
2019-04-13 17:36:07 +02:00

26 lines
632 B
JavaScript

import { Col, Row } from 'react-bootstrap'
import Input from '../handlers/Input'
const Social = () => {
return (
<div>
<Row>
<Col lg={8}>
<Input controlLabel='Facebook' title='social' name='facebook' />
</Col>
<Col lg={8}>
<Input controlLabel='Instagram' title='social' name='instagram' />
</Col>
<Col lg={8}>
<Input controlLabel='Twitter' title='social' name='twitter' />
</Col>
<Col lg={8}>
<Input controlLabel='GitHub' title='social' name='github' />
</Col>
</Row>
</div>
)
}
export default Social