10 lines
291 B
TypeScript
10 lines
291 B
TypeScript
![]() |
import * as React from 'react';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
import App from './App';
|
||
|
import { MantineProvider } from '@mantine/core';
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<MantineProvider withGlobalStyles withNormalizeCSS>
|
||
|
<App />
|
||
|
</MantineProvider>,
|
||
|
document.getElementById('root'));
|