import React, { Fragment } from 'react'; import InfoBox from '../../components/info-box'; import { dataFields } from '../../config/data-fields-config'; import CheckboxDataEntry from '../data-components/checkbox-data-entry'; import NumericDataEntryWithFormattedLink from '../data-components/numeric-data-entry-with-formatted-link';import DataEntry from '../data-components/data-entry'; import { DataEntryGroup } from '../data-components/data-entry-group'; import SelectDataEntry from '../data-components/select-data-entry'; import Verification from '../data-components/verification'; import withCopyEdit from '../data-container'; import { CategoryViewProps } from './category-view-props'; /** * Planning view/edit section */ const PlanningView: React.FunctionComponent = (props) => ( This section is under development as part of the project CLPV Tool. For more details and progress read here. {/* Move to Demolition: */} { return "https://historicengland.org.uk/listing/the-list/list-entry/" + id + "?section=official-list-entry" } } linkDescriptionFunction={(id: String) => { return "description at the official site" } } /> ); const PlanningContainer = withCopyEdit(PlanningView); export default PlanningContainer;