import React from 'react'; import { NavLink } from 'react-router-dom'; import { Paper, Icon, Tabs, Tab } from '@material-ui/core'; const navLinkStyle = { display: 'flex', justifyContent: 'center', alignItems: 'center', width: '100%', textDecoration: 'none', color: 'inherit', padding: '0.8rem 1.5rem', }; const activeNavLinkStyle = { fontWeight: 'bold', borderRadius: '3px', padding: '0.8rem 1.5rem', }; const iconStyle = { marginRight: '5px', }; function AdminMenu({history}) { const { location } = history; const { pathname } = location; return ( supervised_user_circle Users } > apps API Access }> lock Authentication }> ); } export default AdminMenu;