blob: bfd3e80a19d4a73ff2f345f53f801a3f55ddbf65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import { world } from "./world.js";
function component() {
const element = document.createElement("div");
element.innerHTML = "hello " + world();
return element;
}
document.body.appendChild(component());
|