export interface Node<T> {
    id: string;
    data?: T;
}
