forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
34 lines (30 loc) · 747 Bytes
/
Copy pathindex.js
File metadata and controls
34 lines (30 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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