client/src/App.js
author ymh <ymh.work@gmail.com>
Mon, 08 Oct 2018 18:35:47 +0200
changeset 168 ea92f4fe783d
parent 167 1f340f3597a8
child 191 3f71ad81a5a9
permissions -rw-r--r--
- move SlateEditor and dependencies to its own folder - remove Immutable - remove redux-persist-immutable - remobe redux-immutable - update libraries - added tests on store manipulations (accessor and reducers)

import React, { Component } from 'react';

// import logo from './logo.svg';
import './App.css';
import Navbar from './components/Navbar';

class App extends Component {
  render() {
    return (
      <div>
        <Navbar history={this.props.history} />
        <div className="container-fluid"></div>
          <div className="row">
            {/* <div className="col-lg-6 offset-md-3 text-center mt-5 pt-5">
              <h5 className="font-weight-bold text-center text-lg mt-5">Bienvenue sur</h5>
              <h4 className="font-weight-bold text-center text-lg">IRI Notes</h4>
          </div> */}
        </div>
      </div>
    );
  }
}

export default App;