client/src/App.js
changeset 143 cfcbf4bc66f1
parent 12 48ddaa42b810
child 145 5d2bc8c877ea
--- a/client/src/App.js	Wed Jul 18 17:32:09 2018 +0200
+++ b/client/src/App.js	Tue Aug 14 20:34:50 2018 +0200
@@ -1,7 +1,5 @@
 import React, { Component } from 'react';
-
 // import logo from './logo.svg';
-import { Grid, Row, Col, Alert } from 'react-bootstrap';
 import './App.css';
 import Navbar from './components/Navbar';
 
@@ -10,13 +8,13 @@
     return (
       <div>
         <Navbar history={this.props.history} />
-        <Grid fluid>
-          <Row>
-            <Col md={6} mdOffset={3} className="text-center">
-              <Alert bsStyle="info">Welcome to IRI Notes</Alert>
-            </Col>
-          </Row>
-        </Grid>
+        <div className="container-fluid">
+          <div className="row">
+            <div className="col-md-6 col-md-offset-3 text-center">
+              <div class="alert alert-info" role="alert" bsStyle="info"><span>Bienvenue sur</span><br/>IRI Notes</div>
+            </div>
+          </div>
+        </div>
       </div>
     );
   }