Upgraded the TreeNative component to a custom HTML component

This commit is contained in:
Magnus Åhall 2026-04-29 14:48:27 +02:00
parent e2b20816c2
commit 993bbf59f3
2 changed files with 27 additions and 23 deletions

View file

@ -1,12 +1,12 @@
import { ROOT_NODE } from 'node_store'
import { TreeNative } from 'tree'
import { N2Tree } from 'tree'
import { NodeUINative, Node } from 'node'
import { SyncProgress } from 'sync'
export class App {
constructor() {// {{{
this.currentNode = null
this.treeNative = new TreeNative()
this.treeNative = new N2Tree()
this.crumbs = new Crumbs()
this.crumbsElement = document.getElementById('crumbs')
this.nodeUI = new NodeUINative(document.getElementById('note'))