complete making needed data for keeping in local storage

This commit is contained in:
2024-06-23 09:45:25 +03:30
parent 18edfac9f9
commit acc13ef1d5
9 changed files with 94 additions and 40 deletions

View File

@@ -2,7 +2,6 @@ import {Box, Stack} from "@mui/material";
import HeaderWithLogo from "@/components/layouts/dashboard/headerWithLogo";
import HeaderWithSidebar from "@/components/layouts/dashboard/headerWithSidebar";
import 'react-toastify/dist/ReactToastify.css';
import {ToastContainer} from "react-toastify";
const Template = ({children}) => {
return (<Stack>
@@ -10,7 +9,6 @@ const Template = ({children}) => {
<Box>
<HeaderWithSidebar>
{children}
<ToastContainer/>
</HeaderWithSidebar>
</Box>
</Stack>)