1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

refactor sidebar and stuff

This commit is contained in:
Fedor Katurov 2023-10-26 19:48:36 +06:00
parent 7698d17ed3
commit 1eb6c9c29d
8 changed files with 21 additions and 19 deletions

View file

@ -8,10 +8,10 @@ interface IProps {
isLab?: boolean;
}
const SidebarRouter: FC<IProps> = ({ isLab }) => (
const SubmitBarRouter: FC<IProps> = ({ isLab }) => (
<Authorized>
<SubmitBarSSR isLab={isLab} />
</Authorized>
);
export { SidebarRouter };
export { SubmitBarRouter };