mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
import { world } from "./world.js";
|
|
|
|
function component() {
|
|
const element = document.createElement("div");
|
|
|
|
element.innerHTML = "hello " + world();
|
|
|
|
return element;
|
|
}
|
|
|
|
document.body.appendChild(component());
|