Init template

This commit is contained in:
Vitaly Rtishchev 2023-06-12 11:15:25 +04:00
commit c7020592dc
18 changed files with 2574 additions and 0 deletions

14
src/App.tsx Normal file
View 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>
);
}