import React from 'react'; import { addNS } from 'berkeleys-redux-utils'; import ns from './ns.json'; import Main from './Quiz.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( ns, () => ({ [types.toggleMap]: 'Map', [types.toggleMain]: 'Lesson' }) ); const nameToComponent = { Map: _Map, Lesson: Main }; const renderPane = name => { const Comp = nameToComponent[name]; return Comp ? : Pane { name } not found; }; export default function ShowQuiz() { return ( ); } ShowQuiz.displayName = 'ShowQuiz'; ShowQuiz.propTypes = propTypes;