import { Particle } from '@/api/types'; import { type ParticlePath } from '@/lib/particle-path'; import { ContainerView } from '@/features/particles/container-view'; interface FolderViewProps { folderParticle: Particle & { type: 'folder' }; path: ParticlePath; } export function FolderView({ path, folderParticle }: FolderViewProps) { return ; }