import { Component } from 'react'; import { Link, withRouter, RouteComponentProps } from 'react-router-dom'; import { List, ListItem, ListItemIcon, ListItemText } from '@material-ui/core'; import TuneIcon from '@material-ui/icons/Tune'; import DashboardIcon from '@material-ui/icons/Dashboard'; import { withAuthenticatedContext, AuthenticatedContextProps } from '../authentication'; type ProjectProps = AuthenticatedContextProps & RouteComponentProps; class ProjectMenu extends Component { render() { const { authenticatedContext } = this.props; const path = this.props.match.url; return ( ); } } export default withRouter(withAuthenticatedContext(ProjectMenu));