14 lines
280 B
TypeScript
14 lines
280 B
TypeScript
import '@mantine/core/styles.css';
|
|
|
|
import { MantineProvider } from '@mantine/core';
|
|
import { Router } from './Router';
|
|
import { theme } from './theme';
|
|
|
|
export default function App() {
|
|
return (
|
|
<MantineProvider theme={theme}>
|
|
<Router />
|
|
</MantineProvider>
|
|
);
|
|
}
|