blob: 7209079eb377d5303c174b44a95140ee2328beb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { makeElement } from "../../arching-kaos-generator.js";
var commentsSection = {
element: 'div',
id: 'comments-section',
innerHTML: [
{ element: "h2", innerText: "Comments" },
{ element: "em", id:"comments-sec-not-found", innerText: "No data found (yet?)!"}
]
};
makeElement(commentsSection, document.querySelector('.main'));
|