import React from 'react'; import withCopyEdit from '../data-container'; import LikeDataEntry from '../data-components/like-data-entry'; import { CategoryViewProps } from './category-view-props'; import InfoBox from '../../components/info-box'; import { LogicalDataEntry } from '../data-components/logical-data-entry/logical-data-entry'; import { dataFields } from '../../config/data-fields-config'; /** * Community view/edit section */ const CommunityView: React.FunctionComponent = (props) => ( <> Can you help add information on how well you think the building works, and on if it is in public ownership? {/* */} {/*

{props.intro}

*/} {/*
  • Is this a publicly owned building?
  • { // "slug": "community_publicly_owned", // "type": "checkbox" }
  • Has this building ever been used for community or public services activities?
  • { // "slug": "community_past_public", // "type": "checkbox" }
  • Would you describe this building as a community asset?
  • { // "slug": "community_asset", // "type": "checkbox" }
*/} ); const CommunityContainer = withCopyEdit(CommunityView); export default CommunityContainer;