colouring-montreal/app/src/frontend/building/data-containers/use.tsx
Tom Russell 22db157e6e Create (empty) DataContainers for each category
Fields/children will be written as components, rather than generated declaratively.

BuildingEdit will be folded into the withCopyEdit higher-order-component,
hopefully removing some duplicated structure and functionality.
2019-08-23 12:58:40 +01:00

16 lines
258 B
TypeScript

import React from 'react';
import { withCopyEdit } from '../building-view';
/**
* Use view/edit section
*/
const UseView = (props) => (
<dl className="data-list">
</dl>
)
const UseContainer = withCopyEdit(UseView);
export default UseContainer;