import { type Component, Index, For } from "solid-js"; import { Accordion } from "@ark-ui/solid"; import { ShevronSmallDown } from "@icons"; import type { TreeProps } from "../types"; export const Tree: Component = props => { const { currentRoute, currentModule, currentClass, items } = props; const typeKeys = items!.types && Object.keys(items!.types); const tutorials = items!.tutorials && items!.tutorials ? items!.tutorials.configuration : null; return ( ); };