This commit is contained in:
bipproduction
2025-10-07 16:17:04 +08:00
commit 1c6721a664
63 changed files with 13148 additions and 0 deletions

15
src/App.tsx Normal file
View File

@@ -0,0 +1,15 @@
import '@mantine/core/styles.css';
import '@mantine/notifications/styles.css';
import { Notifications } from '@mantine/notifications';
import { MantineProvider } from '@mantine/core';
import AppRoutes from './AppRoutes';
export function App() {
return <MantineProvider>
<Notifications />
<AppRoutes />
</MantineProvider>;
}