Mercurial
diff playground/main.ts @ 15:2b9e75756825
[GuiZe] Updated to handle bundling and created a shee
l script for pushing.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Fri, 03 Oct 2025 06:50:33 -0700 |
| parents | de54585a40f1 |
| children |
line wrap: on
line diff
--- a/playground/main.ts Thu Oct 02 14:41:06 2025 -0700 +++ b/playground/main.ts Fri Oct 03 06:50:33 2025 -0700 @@ -1,10 +1,5 @@ -import { JUNE } from "./hello"; -import { foo } from "./june"; -import { foo as xd } from "./foo/foo.ts"; - +import { Foo } from "./june"; +import ReactDOM from 'react-dom/client'; -const main = (name: string) => console.log(name); +ReactDOM.createRoot(document.getElementById('root')!).render(Foo()); -main(JUNE); -foo(); -xd();