Type view-only notes
This commit is contained in:
parent
f05c1b5552
commit
68f96dff11
@ -1,15 +1,22 @@
|
|||||||
import React from 'react';
|
import React, { Fragment } from 'react';
|
||||||
|
|
||||||
import withCopyEdit from '../data-container';
|
import withCopyEdit from '../data-container';
|
||||||
import DataEntry from '../data-components/data-entry';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Type view/edit section
|
* Type view/edit section
|
||||||
*/
|
*/
|
||||||
const TypeView = (props) => (
|
const TypeView = (props) => (
|
||||||
<dl className="data-list">
|
<Fragment>
|
||||||
|
<p className="data-intro">{props.intro}</p>
|
||||||
</dl>
|
<ul>
|
||||||
|
<li>Original use (as constructed)</li>
|
||||||
|
{
|
||||||
|
// "disabled": true,
|
||||||
|
// "slug": "use_type_original",
|
||||||
|
// "type": "text"
|
||||||
|
}
|
||||||
|
</ul>
|
||||||
|
</Fragment>
|
||||||
)
|
)
|
||||||
const TypeContainer = withCopyEdit(TypeView);
|
const TypeContainer = withCopyEdit(TypeView);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user