client/src/App.js
changeset 143 cfcbf4bc66f1
parent 12 48ddaa42b810
child 145 5d2bc8c877ea
equal deleted inserted replaced
142:56850f5c73f6 143:cfcbf4bc66f1
     1 import React, { Component } from 'react';
     1 import React, { Component } from 'react';
     2 
       
     3 // import logo from './logo.svg';
     2 // import logo from './logo.svg';
     4 import { Grid, Row, Col, Alert } from 'react-bootstrap';
       
     5 import './App.css';
     3 import './App.css';
     6 import Navbar from './components/Navbar';
     4 import Navbar from './components/Navbar';
     7 
     5 
     8 class App extends Component {
     6 class App extends Component {
     9   render() {
     7   render() {
    10     return (
     8     return (
    11       <div>
     9       <div>
    12         <Navbar history={this.props.history} />
    10         <Navbar history={this.props.history} />
    13         <Grid fluid>
    11         <div className="container-fluid">
    14           <Row>
    12           <div className="row">
    15             <Col md={6} mdOffset={3} className="text-center">
    13             <div className="col-md-6 col-md-offset-3 text-center">
    16               <Alert bsStyle="info">Welcome to IRI Notes</Alert>
    14               <div class="alert alert-info" role="alert" bsStyle="info"><span>Bienvenue sur</span><br/>IRI Notes</div>
    17             </Col>
    15             </div>
    18           </Row>
    16           </div>
    19         </Grid>
    17         </div>
    20       </div>
    18       </div>
    21     );
    19     );
    22   }
    20   }
    23 }
    21 }
    24 
    22