This component no longer exists. It was in skyroc-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-10 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Tree
skyroc-ui/treeRemovedBlock
skyroc-ui publishes no description for this item.
Install it
npx shadcn@latest add https://ui-play.skyroc.me/r/tree.jsonSource
1'use client';23import { useComponentConfig } from '../config-provider/context';4import TreeUI from './TreeUI';5import type { TreeItemData, TreeProps } from './types';67const Tree = <T extends TreeItemData = TreeItemData>({ ref, ...props }: TreeProps<T>) => {8 const config = useComponentConfig('tree');910 const mergedProps = { ...config, ...props };1112 return (13 <TreeUI14 ref={ref}15 {...mergedProps}16 />17 );18};1920export default Tree;
What it pulls in
Other registry items
