diff options
Diffstat (limited to 'src/js/ui/sections/akNodeInfoSection.js')
-rw-r--r-- | src/js/ui/sections/akNodeInfoSection.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/js/ui/sections/akNodeInfoSection.js b/src/js/ui/sections/akNodeInfoSection.js new file mode 100644 index 0000000..42223bd --- /dev/null +++ b/src/js/ui/sections/akNodeInfoSection.js @@ -0,0 +1,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')); |