comparison 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
comparison
equal deleted inserted replaced
14:0570ada19343 15:2b9e75756825
1 import { JUNE } from "./hello"; 1 import { Foo } from "./june";
2 import { foo } from "./june"; 2 import ReactDOM from 'react-dom/client';
3 import { foo as xd } from "./foo/foo.ts";
4 3
4 ReactDOM.createRoot(document.getElementById('root')!).render(Foo());
5 5
6 const main = (name: string) => console.log(name);
7
8 main(JUNE);
9 foo();
10 xd();