1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2024-11-22 07:49:38 +01:00
deka-dom-el/test/index.js
2023-09-05 09:25:47 +02:00

10 lines
312 B
JavaScript

import { style, el } from './exports.js';
document.head.append(style.element);
import { fullNameComponent } from './components/fullNameComponent.js';
import { todosComponent } from './components/todosComponent.js';
document.body.append(
el("h1", "Experiments:"),
el(fullNameComponent),
el(todosComponent),
);