diff --git a/app.tsx b/app.tsx
index bc9feff..204350f 100644
--- a/app.tsx
+++ b/app.tsx
@@ -1,2 +1,10 @@
+import * as React from "react"
+const dyn = await import("./app-dynamic.tsx");
+console.log(dyn);
+
+
import Other from "./other.tsx";
+
console.log(Other);
+
+React.render(
sup!
, document.querySelector("#app")||document.body);
\ No newline at end of file
diff --git a/deno.json b/deno.json
index 5907466..3ba0237 100644
--- a/deno.json
+++ b/deno.json
@@ -9,6 +9,10 @@
"entry": "./app.tsx",
"config": "./deno.json"
},
+ "tasks": {
+ "go": "deno run -A bundler-inc.tsx",
+ "serve": "deno run -A serve.tsx"
+ },
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react"
diff --git a/index.html b/index.html
index 55b0ee2..acdad26 100644
--- a/index.html
+++ b/index.html
@@ -4,5 +4,6 @@
-
+