1
0
mirror of https://github.com/ellmau/adf-obdd.git synced 2025-12-20 09:39:38 +01:00
2023-01-13 08:49:58 +01:00

9 lines
229 B
TypeScript

import * as React from 'react';
import { createRoot } from 'react-dom/client';
import App from './components/app.tsx';
const container = document.getElementById('app');
const root = createRoot(container);
root.render(<App />);