mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-26 08:04:56 +01:00
10 lines
246 B
TypeScript
10 lines
246 B
TypeScript
// import './wdyr';
|
|
|
|
import React from 'react';
|
|
import App from './app';
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
const container = document.getElementById('root') as HTMLElement;
|
|
const root = createRoot(container!);
|
|
root.render(<App />);
|