import React from 'react'; import { NavLink } from 'react-router-dom'; import { Paper, Tabs, Tab } from '@material-ui/core'; import useUiConfig from '../../hooks/api/getters/useUiConfig/useUiConfig'; 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', }; function AdminMenu({ history }) { const { uiConfig } = useUiConfig(); const { flags } = uiConfig; const { location } = history; const { pathname } = location; return ( Users } > {flags.RE && ( PROJECT ROLES } > )} API Access } > Single Sign-On } > ); } export default AdminMenu;