mirror of
https://github.com/Telecominfraproject/wlan-cloud-owprov-ui.git
synced 2025-11-02 19:47:57 +00:00
18 lines
495 B
TypeScript
18 lines
495 B
TypeScript
import React from 'react';
|
|
import { ChakraProvider } from '@chakra-ui/react';
|
|
import ReactDOM from 'react-dom/client';
|
|
import App from 'App';
|
|
import 'i18n';
|
|
import theme from 'theme/theme';
|
|
import 'index.css';
|
|
import 'rc-tree/assets/index.css';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
ReactDOM.createRoot(document.getElementById('root')!).render(
|
|
<React.StrictMode>
|
|
<ChakraProvider theme={theme}>
|
|
<App />
|
|
</ChakraProvider>
|
|
</React.StrictMode>,
|
|
);
|