import { Particle } from "@/api/types"; import { useLiveParticleChildren } from "@/hooks/use-particle"; import type { ParticlePath } from "@/lib/particle-path"; interface FolderViewProps { folderParticle: Particle; path: ParticlePath; } export function FolderView({ path, folderParticle }: FolderViewProps) { const { children, error, isLoading } = useLiveParticleChildren(path); return (

Folder view — {folderParticle.id}

); }