import React, { PureComponent } from 'react'; import classNames from 'classnames'; import PromCheatSheet from './PromCheatSheet'; const TAB_MENU_ITEMS = [ { text: 'Start', id: 'start', icon: 'fa fa-rocket', }, ]; export default class PromStart extends PureComponent { state = { active: 'start', }; onClickTab = active => { this.setState({ active }); }; render() { const { active } = this.state; const customCss = ''; return (
{active === 'start' && }
); } }