mantine kjhkjh

This commit is contained in:
2023-02-15 17:13:07 +01:00
parent 15beb7bb8a
commit 71fed22a2a
7 changed files with 2582 additions and 709 deletions

View File

@ -17,6 +17,8 @@ import toast, { Toaster } from 'react-hot-toast';
import { TUser } from './context/UserContext';
import PasswordReset from './components/PasswordReset';
import WantNewPw from './components/WantNewPw';
import { MantineProvider } from '@mantine/core';
import { NotificationsProvider } from '@mantine/notifications';
const App: React.FC = () =>
{
@ -47,6 +49,8 @@ const App: React.FC = () =>
}
return (
<MantineProvider withNormalizeCSS withGlobalStyles>
<NotificationsProvider position="top-center" >
<div className="App">
<div className="col middle">
<BrowserRouter basename='/dog/'>
@ -71,6 +75,8 @@ const App: React.FC = () =>
</div>
</div>
</NotificationsProvider>
</MantineProvider>
);
}