EVOLUTION-MANAGER
Edit File: SideMenu.tsx
import React, { PureComponent } from 'react'; import appEvents from '../../app_events'; import TopSection from './TopSection'; import BottomSection from './BottomSection'; import config from 'app/core/config'; import { CoreEvents } from 'app/types'; import { Branding } from 'app/core/components/Branding/Branding'; const homeUrl = config.appSubUrl || '/'; export class SideMenu extends PureComponent { toggleSideMenuSmallBreakpoint = () => { appEvents.emit(CoreEvents.toggleSidemenuMobile); }; render() { return [ <a href={homeUrl} className="sidemenu__logo" key="logo"> <Branding.MenuLogo /> </a>, <div className="sidemenu__logo_small_breakpoint" onClick={this.toggleSideMenuSmallBreakpoint} key="hamburger"> <i className="fa fa-bars" /> <span className="sidemenu__close"> <i className="fa fa-times" /> Close </span> </div>, <TopSection key="topsection" />, <BottomSection key="bottomsection" />, ]; } }