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

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