import React from 'react'; import Link from 'next/link'; import { IconCode, IconStack, IconGitPullRequest, IconUser, IconUsers, IconSettings, IconBuilding, IconChevronsLeft} from '@tabler/icons'; import actions from 'providers/Store/actions'; import { useStore } from 'providers/Store'; import StyledWrapper from './StyledWrapper'; const MenuBar = () => { const [store, storeDispatch] = useStore(); const hideMenuBar = () => { storeDispatch({ type: actions.TOGGLE_LEFT_MENUBAR }) }; return (
{/* Teams Icon */} {/*
*/}
); }; export default MenuBar;