22db157e6e
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.
13 lines
245 B
TypeScript
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;
|