import React from 'react'; import { addNS } from 'berkeleys-redux-utils'; import BackEnd from './Back-End.jsx'; import { types } from '../../redux'; import Panes from '../../../../Panes'; import _Map from '../../../../Map'; import ChildContainer from '../../../../Child-Container.jsx'; const propTypes = {}; export const mapStateToPanes = addNS( 'backend', () => ({ [types.toggleMap]: 'Map', [types.toggleMain]: 'Main' }) ); const nameToComponent = { Map: _Map, Main: BackEnd }; const renderPane = name => { const Comp = nameToComponent[name]; return Comp ? : Pane { name } not found; }; export default function ShowBackEnd() { return ( ); } ShowBackEnd.displayName = 'ShowBackEnd'; ShowBackEnd.propTypes = propTypes;