sdy

update menuContainer

......@@ -10,7 +10,14 @@ const LOG_OUT = gql`
}
`;
export default withRouter(() => {
export default withRouter(({ match, location, history }) => {
const [logOut] = useMutation(LOG_OUT);
return <MenuPresenter logOut={logOut} />;
return (
<MenuPresenter
logOut={logOut}
match={match}
location={location}
history={history}
/>
);
});
......