import React, { PureComponent } from 'react'; import appEvents from '../../app_events'; import TopSection from './TopSection'; import BottomSection from './BottomSection'; import config from 'app/core/config'; const homeUrl = config.appSubUrl || '/'; export class SideMenu extends PureComponent { toggleSideMenuSmallBreakpoint = () => { appEvents.emit('toggle-sidemenu-mobile'); }; render() { return [ Grafana ,
 Close
, , , ]; } }