1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2024-11-22 16:55:23 +01:00
deka-dom-el/test/index.js

10 lines
312 B
JavaScript
Raw Normal View History

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),
);