mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-02 18:31:50 -04:00
7 lines
190 B
TypeScript
7 lines
190 B
TypeScript
import { createRoot } from "react-dom/client"
|
|
import App from "../components/App/App";
|
|
|
|
const rootApp = createRoot(document.getElementById('root') as HTMLElement);
|
|
|
|
rootApp.render(<App />);
|