Blame view

imports/ui/pages/documents.js 373 Bytes
d1f05315d   tmcdeveloper   wip adding API an...
1
  import React from 'react';
76dd62c7b   tmcdeveloper   fix eslint error ...
2
  import { Row, Col } from 'react-bootstrap';
d1f05315d   tmcdeveloper   wip adding API an...
3
4
5
6
7
8
9
10
11
12
13
  import DocumentsList from '../containers/documents-list.js';
  import { AddDocument } from '../components/add-document.js';
  
  export const Documents = () => (
    <Row>
      <Col xs={ 12 }>
        <h4 className="page-header">Documents</h4>
        <AddDocument />
        <DocumentsList />
      </Col>
    </Row>
f0c912bf1   tmcdeveloper   add method tests ...
14
  );