1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/form-handler/components/Social.js

27 lines
632 B
JavaScript
Raw Normal View History

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