-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.jsx
30 lines (27 loc) · 899 Bytes
/
App.jsx
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
import React from 'react';
import Jumbotron from './components/Jumbotron';
import TitleHeader from './components/TitleHeader';
import Container from './components/Container';
import Row from './components/Row';
import Column from './components/Column';
import Form from './components/Form';
export default class App extends React.Component {
render() {
return (
<div>
<Jumbotron>
<TitleHeader className="text-center" title="React" />
<br></br>
<h1 className="text-center">V1.9</h1>
</Jumbotron>
<Container>
<Row>
<Column className="col-md-6 offset-md-3">
<Form />
</Column>
</Row>
</Container>
</div>
);
}
}