wisemapping-frontend/packages/webapp/src/index.tsx
2022-11-15 22:51:09 -08:00

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 />);