Type view-only notes

This commit is contained in:
Tom Russell 2019-08-14 22:30:24 +01:00
parent f05c1b5552
commit 68f96dff11

View File

@ -1,15 +1,22 @@
import React from 'react';
import React, { Fragment } from 'react';
import withCopyEdit from '../data-container';
import DataEntry from '../data-components/data-entry';
/**
* Type view/edit section
*/
const TypeView = (props) => (
<dl className="data-list">
</dl>
<Fragment>
<p className="data-intro">{props.intro}</p>
<ul>
<li>Original use (as constructed)</li>
{
// "disabled": true,
// "slug": "use_type_original",
// "type": "text"
}
</ul>
</Fragment>
)
const TypeContainer = withCopyEdit(TypeView);