mirror of
https://github.com/emuplace/sudachi.emuplace.app.git
synced 2025-05-10 18:56:26 +02:00
Init template
This commit is contained in:
commit
c7020592dc
18 changed files with 2574 additions and 0 deletions
14
src/App.tsx
Normal file
14
src/App.tsx
Normal file
|
@ -0,0 +1,14 @@
|
|||
import "@mantine/core/styles.css";
|
||||
import { MantineProvider } from "@mantine/core";
|
||||
import { theme } from "./theme";
|
||||
import { Welcome } from "./Welcome/Welcome";
|
||||
import { ColorSchemeToggle } from "./ColorSchemeToggle/ColorSchemeToggle";
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
<MantineProvider theme={theme}>
|
||||
<Welcome />
|
||||
<ColorSchemeToggle />
|
||||
</MantineProvider>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue