1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-26 05:16:41 +07:00

removed all router-modals

This commit is contained in:
Fedor Katurov 2022-01-09 20:27:23 +07:00
parent 85d20e5009
commit ffce400398
15 changed files with 99 additions and 143 deletions

View file

@ -20,13 +20,10 @@ const SidebarWrapper: FC<IProps> = ({ children, onClose }) => {
return () => clearAllBodyScrollLocks();
}, []);
return createPortal(
return (
<div className={styles.wrapper} ref={ref}>
<div className={styles.clicker} onClick={onClose} />
{children}
</div>,
document.body
</div>
);
};