mirror of
https://github.com/NovaOSS/nova-betterchat.git
synced 2024-11-26 01:34:00 +01:00
11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom/client';
|
||
|
import App from './App';
|
||
|
import './index.css';
|
||
|
|
||
|
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
|
||
|
<React.StrictMode>
|
||
|
<App />
|
||
|
</React.StrictMode>
|
||
|
);
|