comparison medi/src/main.tsx @ 217:7ef4c9d2a72d hg-web

[DO NOT PUSH] Random values.
author MrJuneJune <me@mrjunejune.com>
date Sun, 25 Jan 2026 10:44:04 -0800
parents
children
comparison
equal deleted inserted replaced
192:b818a4561a3c 217:7ef4c9d2a72d
1 import React from 'react';
2 import { createRoot } from 'react-dom/client';
3 import { App } from './app';
4
5 const root = createRoot(document.getElementById('root')!);
6 root.render(<App />);