aboutsummaryrefslogtreecommitdiff
path: root/src/js/ui/sections/commentsSection.js
blob: 1519ad95044980f31c4b70e561c78ab8c91b7458 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { makeElement } from "../../arching-kaos-generator.js";

export function commentsSection()
{
    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'));
}