41 lines
983 B
JavaScript
41 lines
983 B
JavaScript
import React from 'react';
|
|
// import { addNS } from 'berkeleys-redux-utils';
|
|
|
|
// import ns from './ns.json';
|
|
// import Main from './Project.jsx';
|
|
// import ChildContainer from '../../Child-Container.jsx';
|
|
// import { types } from '../../redux';
|
|
// import Panes from '../../../../Panes';
|
|
// import _Map from '../../../../Map';
|
|
|
|
// const propTypes = {};
|
|
// export const mapStateToPanes = addNS(
|
|
// ns,
|
|
// () => ({
|
|
// [types.toggleMap]: 'Map',
|
|
// [types.toggleMain]: 'Main'
|
|
// })
|
|
// );
|
|
|
|
// const nameToComponent = {
|
|
// Map: _Map,
|
|
// Main: Main
|
|
// };
|
|
|
|
// const renderPane = name => {
|
|
// const Comp = nameToComponent[name];
|
|
// return Comp ? <Comp /> : <span>Pane { name } not found</span>;
|
|
// };
|
|
|
|
export default function ShowProject() {
|
|
return (
|
|
<h1>Project</h1>
|
|
// <ChildContainer isFullWidth={ true }>
|
|
// <Panes render={ renderPane }/>
|
|
// </ChildContainer>
|
|
);
|
|
}
|
|
|
|
ShowProject.displayName = 'ShowProject';
|
|
// ShowProject.propTypes = propTypes;
|