client/src/App.js
author ymh <ymh.work@gmail.com>
Tue, 27 Jun 2017 11:38:26 +0200
changeset 97 69eaef18b01b
parent 12 48ddaa42b810
child 143 cfcbf4bc66f1
permissions -rw-r--r--
Improve the network saga. Try to avoid unnecessary token refresh

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';

class App extends Component {
  render() {
    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>
    );
  }
}

export default App;