import React, { Fragment } from 'react'; import withCopyEdit from '../data-container'; import LikeDataEntry from '../data-components/like-data-entry'; import { CategoryViewProps } from './category-view-props'; /** * Community view/edit section */ const CommunityView: React.FunctionComponent = (props) => (

{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;