wisemapping-frontend/packages/webapp/src/index.tsx

10 lines
246 B
TypeScript
Raw Normal View History

2022-11-16 07:45:59 +01:00
// import './wdyr';
2022-11-13 03:42:52 +01:00
import React from 'react';
import App from './app';
import { createRoot } from 'react-dom/client';
2022-11-16 07:45:59 +01:00
const container = document.getElementById('root') as HTMLElement;
const root = createRoot(container!);
root.render(<App />);