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/index.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

38 lines
783 B
JavaScript

import React, { Component } from 'react'
import Head from 'next/head'
import { Col, Row } from 'react-bootstrap'
import Header from './Header'
import DisplayForm from './DisplayForm'
import UserForm from './UserForm'
import Social from './Social'
class Main extends Component {
render () {
return (
<div>
<Head>
<title>Form Handler</title>
<link
rel='stylesheet'
href='https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css'
/>
</Head>
<Header />
<DisplayForm />
<Row>
<Col lg={6}>
<UserForm />
</Col>
<Col lg={6}>
<Social />
</Col>
</Row>
</div>
)
}
}
export default Main