Blame view

imports/ui/pages/documents.js 515 Bytes
d1f05315d   tmcdeveloper   wip adding API an...
1
  import React from 'react';
c42d4eeac   themeteorchef   handful of changes
2
  import { Row, Col, Button } from 'react-bootstrap';
3540345c5   themeteorchef   handful of fixes
3
  import DocumentsList from '../containers/DocumentsList.js';
d1f05315d   tmcdeveloper   wip adding API an...
4

3540345c5   themeteorchef   handful of fixes
5
  const Documents = () => (
d1f05315d   tmcdeveloper   wip adding API an...
6
7
    <Row>
      <Col xs={ 12 }>
c42d4eeac   themeteorchef   handful of changes
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   tmcdeveloper   wip adding API an...
16
17
18
        <DocumentsList />
      </Col>
    </Row>
f0c912bf1   tmcdeveloper   add method tests ...
19
  );
3540345c5   themeteorchef   handful of fixes
20
21
  
  export default Documents;