File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/web/src/features/fileTree/components Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 11'use client' ;
22
3- import { FileTreeItem } from "../api" ;
43import { useEffect , useRef } from "react" ;
54import clsx from "clsx" ;
65import scrollIntoView from 'scroll-into-view-if-needed' ;
76import { ChevronDownIcon , ChevronRightIcon } from "@radix-ui/react-icons" ;
87import { FileTreeItemIcon } from "./fileTreeItemIcon" ;
98import Link from "next/link" ;
9+ import { FileTreeItem } from "../types" ;
1010
1111export const FileTreeItemComponent = ( {
1212 node,
Original file line number Diff line number Diff line change 11'use client' ;
22
3- import { FileTreeItem } from "../api" ;
43import { useMemo } from "react" ;
54import { VscodeFolderIcon } from "@/app/components/vscodeFolderIcon" ;
65import { VscodeFileIcon } from "@/app/components/vscodeFileIcon" ;
6+ import { FileTreeItem } from "../types" ;
77
88interface FileTreeItemIconProps {
99 item : FileTreeItem ;
You can’t perform that action at this time.
0 commit comments