This commit is contained in:
2024-02-28 23:43:36 +03:00
parent db6c735fdc
commit 5134d44e39
19 changed files with 2328 additions and 1793 deletions

View File

@@ -9,7 +9,7 @@ import { Dashboard } from './dashboard';
dayjs.locale('ru', ruLocale);
const App = () => {
const App = ({ store }) => {
return(
<BrowserRouter>
<Helmet>
@@ -64,7 +64,7 @@ const App = () => {
}
`}
/>
<Dashboard />
<Dashboard store={store} />
</BrowserRouter>
)
}