restructure the reader

This commit is contained in:
Aria Moradi
2021-05-15 17:18:57 +04:30
parent 5a73068a10
commit 9808976088
7 changed files with 114 additions and 43 deletions

View File

@@ -24,7 +24,7 @@ const useStyles = makeStyles({
interface IProps {
drawerOpen: boolean
setDrawerOpen(state: boolean): void
setDrawerOpen: React.Dispatch<React.SetStateAction<boolean>>
}
export default function TemporaryDrawer({ drawerOpen, setDrawerOpen }: IProps) {