import { useState } from "react"; import { TreeDeps } from "../../tree-deps"; interface PropsInterface { defaultkeys: any[]; open: boolean; onSelected: (arr: any[], videos: any[]) => void; } export const SelectDepsSub = (props: PropsInterface) => { const [init, setInit] = useState(true); return (