Fix
All checks were successful
Lint / lint (push) Successful in 13s

This commit is contained in:
Julien Valverdé
2025-06-18 00:08:57 +02:00
parent 1fe2fec325
commit 4dc336fbf4

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
}