all other staff

This commit is contained in:
2023-04-16 12:18:29 +03:00
parent 0663ed5370
commit 109d51115b
18 changed files with 681 additions and 827 deletions

View File

@@ -1,12 +1,17 @@
import React from 'react';
import { Helmet } from 'react-helmet';
import { Global, css } from '@emotion/react'
import { BrowserRouter } from 'react-router-dom';
import ruLocale from 'dayjs/locale/ru';
import dayjs from 'dayjs';
import { MainPage } from './pages/main';
import { Dashboard } from './dashboard';
dayjs.locale('ru', ruLocale);
const App = () => {
return(
<>
<BrowserRouter>
<Helmet>
<meta name="viewport" content="width=device-width, user-scalable=no" />
</Helmet>
@@ -58,8 +63,8 @@ const App = () => {
}
`}
/>
<MainPage />
</>
<Dashboard />
</BrowserRouter>
)
}