implement stream player

This commit is contained in:
talksik
2026-03-18 15:44:30 -07:00
parent fca125ab52
commit e63bad9b83
12 changed files with 200 additions and 316 deletions
+2
View File
@@ -1,6 +1,7 @@
import { useParams } from "react-router-dom";
import { particlePath } from "@/lib/particle-path";
import { ParticleListView } from "@/features/particles/particle-list-view";
import { useComposeKeyboard } from "@/features/compose/use-compose-keyboard";
/**
* Route-level component for /:networkId (index).
@@ -9,6 +10,7 @@ import { ParticleListView } from "@/features/particles/particle-list-view";
export default function NetworkRoot() {
const { networkId } = useParams();
const path = particlePath(networkId!, []);
useComposeKeyboard();
return (
<ParticleListView path={path} />