mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
27 lines
632 B
JavaScript
27 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
|