rsnext/examples/form-handler/components/Header.js
Tim Neutkens 9c4eefcdbf
Add prettier for examples directory (#5909)
* Add prettier for examples directory

* Fix files

* Fix linting

* Add prettier script in case it has to be ran again
2018-12-17 17:34:32 +01:00

17 lines
387 B
JavaScript

import { Col, Row, Jumbotron } from 'react-bootstrap'
const Header = () => {
return (
<div>
<Row style={{ marginTop: '10px' }}>
<Col lg={8} lgOffset={2}>
<Jumbotron style={{ borderRadius: '15px' }}>
<h1 style={{ textAlign: 'center' }}>Form Handler</h1>
</Jumbotron>
</Col>
</Row>
</div>
)
}
export default Header