21 lines
528 B
JavaScript
21 lines
528 B
JavaScript
//import { Button, Main } from "./main.js";
|
|
//
|
|
//document.body.appendChild(Main({
|
|
// children: [Button({
|
|
// textContent: 'Hello world',
|
|
// onclick: event => console.log('Hello world')
|
|
// })]
|
|
//}));
|
|
|
|
import { div, pre } from './main.js'
|
|
|
|
//const demo = div.w(128).h(64) //.onclick.stop('click').children([
|
|
|
|
document.body.appendChild(div.w(128).h(64).children([
|
|
div.text('Hello world!')
|
|
]))
|
|
|
|
//fetch('./index.js').then(res => res.text()).then(text => {
|
|
// document.body.appendChild(pre.text(text))
|
|
//})
|