import * as React from 'react' import { NavLink } from 'react-router-dom' import { withTranslation, WithTranslation } from 'react-i18next' import classnames from 'classnames' import './style.scss' const logo = require('@assets/logo.png') interface SidebarProps extends WithTranslation { routes: { path: string name: string noMobile?: boolean exact?: boolean }[] } class Sidebar extends React.Component { render () { const { routes, t } = this.props return (
) } } export default withTranslation(['SideBar'])(Sidebar)