wip wiring up account forms
This commit is contained in:
parent
cdc15f019d
commit
3459bf26f8
25 changed files with 413 additions and 53 deletions
|
|
@ -0,0 +1,16 @@
|
|||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import DocumentEditor from '../../components/DocumentEditor/DocumentEditor';
|
||||
|
||||
const NewDocument = ({ history }) => (
|
||||
<div className="NewDocument">
|
||||
<h4 className="page-header">New Document</h4>
|
||||
<DocumentEditor history={history} />
|
||||
</div>
|
||||
);
|
||||
|
||||
NewDocument.propTypes = {
|
||||
history: PropTypes.object.isRequired,
|
||||
};
|
||||
|
||||
export default NewDocument;
|
||||
Loading…
Add table
Add a link
Reference in a new issue