aboutsummaryrefslogtreecommitdiff
path: root/src/js/ui/sections/akNodeInfoSection.js
blob: 38ad961193ead817299d7c65293c155e32eca9f3 (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 akNodeInfoSection()
{
    var akNodeInfoSection = {
        element: "div",
        id: "arching-kaos-node-info",
        innerHTML: `
        <h2>Node Info</h2>
        <em id="node-info-not-found">No data found (yet?)!</em>
    `
    };

    makeElement(akNodeInfoSection, document.querySelector('.main'));
}