Initial commit

This commit is contained in:
bipproduction
2025-10-06 19:31:31 +08:00
commit 35caccdd44
18 changed files with 643 additions and 0 deletions

12
src/App.tsx Normal file
View File

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