Blame view
imports/ui/pages/Documents.js
515 Bytes
d1f05315d
|
1 |
import React from 'react'; |
c42d4eeac
|
2 |
import { Row, Col, Button } from 'react-bootstrap'; |
3540345c5
|
3 |
import DocumentsList from '../containers/DocumentsList.js'; |
d1f05315d
|
4 |
|
3540345c5
|
5 |
const Documents = () => ( |
d1f05315d
|
6 7 |
<Row> <Col xs={ 12 }> |
c42d4eeac
|
8 9 10 11 12 13 14 15 |
<div className="page-header clearfix"> <h4 className="pull-left">Documents</h4> <Button bsStyle="success" className="pull-right" href="/documents/new" >New Document</Button> </div> |
d1f05315d
|
16 17 18 |
<DocumentsList /> </Col> </Row> |
f0c912bf1
|
19 |
); |
3540345c5
|
20 21 |
export default Documents; |