docs: explain particle view resolver

This commit is contained in:
talksik
2026-03-17 19:48:06 -07:00
parent d84a49fb5b
commit 02c3de73e3
@@ -11,7 +11,7 @@ interface ParticleViewResolverProps {
/**
* Resolves a particle by its path segments and renders the appropriate view
* based on particle type. This is the extensibility point for future particle types.
* based on particle type (e.g. stream would show clips in story mode, folder would list files, etc.)
*/
export function ParticleViewResolver({ networkId, particleSegments }: ParticleViewResolverProps) {
const { particle, isLoading, error } = useParticle(networkId, particleSegments);