diff --git a/index.d.ts b/index.d.ts index 04b52e4..a41cfdf 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1,4 +1,6 @@ declare module '*.svg' { const src: string; export default src; -} \ No newline at end of file +} + +declare const __webpack_public_path__: string; \ No newline at end of file diff --git a/src/app.tsx b/src/app.tsx index b85ff1e..3b64ac7 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -1,6 +1,6 @@ import React from 'react'; import { Helmet } from 'react-helmet'; -import { Global, css } from '@emotion/react' +import { Global, css } from '@emotion/react' import { BrowserRouter } from 'react-router-dom'; import ruLocale from 'dayjs/locale/ru'; import dayjs from 'dayjs'; @@ -10,16 +10,15 @@ import { Dashboard } from './dashboard'; dayjs.locale('ru', ruLocale); -const App = ({ store }) => { - return( - - - - - Журнал - - ( + + + + + Журнал + + { font-style: normal; } `} - /> - - - - ) -} + /> + + + +) export default App;