colouring-montreal/app/src/frontend/building/data-containers/location.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

13 lines
245 B
TypeScript

import React from 'react';
import { withCopyEdit } from '../building-view';
const LocationView = (props) => (
<dl className="data-list">
</dl>
)
const LocationContainer = withCopyEdit(LocationView);
export default LocationContainer;