mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
4bd30c8713
* Example: Form handler with Redux and React-bootstrap * inputChange refactoring * Destructuring inputChange
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
|