2023-05-04 16:09:19 +08:00
|
|
|
import * as React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import { MantineProvider } from '@mantine/core';
|
2023-05-05 01:10:02 +08:00
|
|
|
import App from './App';
|
2023-05-04 16:09:19 +08:00
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<MantineProvider withGlobalStyles withNormalizeCSS>
|
|
|
|
<App />
|
|
|
|
</MantineProvider>,
|
2023-05-05 01:10:02 +08:00
|
|
|
document.getElementById('app'));
|