1997c34470
- building-view contained BuildingVIew and withCopyEdit - and imported each data-container - which each imported withCopyEdit to create their data-container seemed okay from ts/webpack dev environment but failed in jest test
17 lines
313 B
TypeScript
17 lines
313 B
TypeScript
import React from 'react';
|
|
|
|
import withCopyEdit from '../data-container';
|
|
import DataEntry from '../data-components/data-entry';
|
|
|
|
/**
|
|
* Team view/edit section
|
|
*/
|
|
const TeamView = (props) => (
|
|
<dl className="data-list">
|
|
|
|
</dl>
|
|
)
|
|
const TeamContainer = withCopyEdit(TeamView);
|
|
|
|
export default TeamContainer;
|