Commit c73ac15f5e8d9ae3b6889807cf7dfcf4441dec1e

Authored by themeteorchef
1 parent bc401ec925
Exists in master

add skipped filename change for Documents.js page component

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