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