diff -r 431977d7c9a6 -r b52921a63e77 client/src/components/NotesContainer.js --- a/client/src/components/NotesContainer.js Mon May 22 14:34:35 2017 +0200 +++ b/client/src/components/NotesContainer.js Mon May 22 17:59:19 2017 +0200 @@ -5,6 +5,8 @@ import PropTypes from 'prop-types'; import Immutable from 'immutable'; +import { Grid, Row, Col} from 'react-bootstrap'; + import * as notesActions from '../actions/notes-actions'; import NotesList from './NotesList'; import NoteInput from './NoteInput'; @@ -13,10 +15,18 @@ render() { const { notes } = this.props; return ( -
+ + + + + + + -
+ + + ); } }