0.1.13 (#18)
All checks were successful
Publish / publish (push) Successful in 22s
Lint / lint (push) Successful in 15s

Co-authored-by: Julien Valverdé <julien.valverde@mailo.com>
Reviewed-on: https://gitea:3000/Thilawyn/reffuse/pulls/18
This commit was merged in pull request #18.
This commit is contained in:
Julien Valverdé
2025-06-18 00:12:19 +02:00
parent 30b72b5b52
commit e089bf9fee
3 changed files with 15 additions and 12 deletions

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
}