| author | Alexandre Segura <mex.zktk@gmail.com> |
| Tue, 20 Jun 2017 16:08:12 +0200 | |
| changeset 63 | 4088f8dc6b52 |
| parent 12 | 48ddaa42b810 |
| child 143 | cfcbf4bc66f1 |
| permissions | -rw-r--r-- |
| 1 | 1 |
import React, { Component } from 'react'; |
|
12
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
2 |
|
|
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
3 |
// import logo from './logo.svg'; |
|
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
4 |
import { Grid, Row, Col, Alert } from 'react-bootstrap'; |
| 1 | 5 |
import './App.css'; |
|
12
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
6 |
import Navbar from './components/Navbar'; |
| 1 | 7 |
|
8 |
class App extends Component { |
|
9 |
render() { |
|
10 |
return ( |
|
| 2 | 11 |
<div> |
|
12
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
12 |
<Navbar history={this.props.history} /> |
|
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
13 |
<Grid fluid> |
| 2 | 14 |
<Row> |
|
12
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
15 |
<Col md={6} mdOffset={3} className="text-center"> |
|
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
16 |
<Alert bsStyle="info">Welcome to IRI Notes</Alert> |
| 2 | 17 |
</Col> |
18 |
</Row> |
|
19 |
</Grid> |
|
| 1 | 20 |
</div> |
21 |
); |
|
22 |
} |
|
23 |
} |
|
24 |
||
|
12
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
25 |
export default App; |