Mercurial
view 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 |
line wrap: on
line source
import React from 'react'; import { createRoot } from 'react-dom/client'; import { App } from './app'; const root = createRoot(document.getElementById('root')!); root.render(<App />);