colouring-montreal/app/src/frontend/building/data-containers/team.tsx

34 lines
1.0 KiB
TypeScript
Raw Normal View History

2019-08-14 17:12:24 -04:00
import React, { Fragment } from 'react';
import InfoBox from '../../components/info-box';
import withCopyEdit from '../data-container';
2019-11-07 02:39:26 -05:00
import { CategoryViewProps } from './category-view-props';
/**
* Team view/edit section
*/
const TeamView: React.FunctionComponent<CategoryViewProps> = (props) => (
2019-08-14 17:12:24 -04:00
<Fragment>
2022-02-16 08:46:54 -05:00
<InfoBox msg="Can you help us capture information on who built the current building?"></InfoBox>
2019-08-14 17:12:24 -04:00
<ul>
<li>Construction and design team (original building)</li>
{
// "disabled": true,
// "slug": "team_original",
// "type": "text"
}
<li>Construction and design team (significant additional works)</li>
{
// "disabled": true,
// "slug": "team_after_original",
// "type": "text_multi"
}
<li>Awards</li>
2019-08-14 17:12:24 -04:00
</ul>
</Fragment>
2019-11-07 03:13:30 -05:00
);
const TeamContainer = withCopyEdit(TeamView);
export default TeamContainer;