import React, { Fragment } from 'react'; import { dataFields } from '../../config/data-fields-config'; import DataEntry from '../data-components/data-entry'; import SelectDataEntry from '../data-components/select-data-entry'; import withCopyEdit from '../data-container'; import { CategoryViewProps } from './category-view-props'; const ConstructionMaterialsOptions = [ 'Wood', 'Stone', 'Brick', 'Steel', 'Reinforced Concrete', 'Other Metal', 'Other Natural Material', 'Other Man-Made Material' ]; const RoofCoveringOptions = [ 'Slate', 'Clay Tile', 'Wood', 'Asphalt', 'Iron or Steel', 'Other Metal', 'Other Natural Material', 'Other Man-Made Material' ]; /** * Construction view/edit section */ const ConstructionView: React.FunctionComponent = (props) => { return ( ); }; const ConstructionContainer = withCopyEdit(ConstructionView); export default ConstructionContainer;