0.1.13 #18

Merged
Thilawyn merged 359 commits from next into master 2025-06-18 00:12:19 +02:00
Showing only changes of commit 4dc336fbf4 - Show all commits

View File

@@ -7,12 +7,12 @@ import { useEffect, useState } from "react"
interface Node {
value: string
left?: Leaf
right?: Leaf
value: string
left?: Leaf
right?: Leaf
}
interface Leaf {
node: Node
node: Node
}