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

Folder view — {folderParticle.id}

); }