feat: autoplay inbound clips

This commit is contained in:
talksik
2026-03-21 17:59:41 -07:00
parent 18f587864f
commit 4a4d213eb6
6 changed files with 122 additions and 7 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 { AutoplayOverlay } from "@/features/particles/autoplay-overlay";
import ControlsIndicator from "@/features/compose/controls-indicator";
import { ComposeOverlay } from "./compose/compose-overlay";
@@ -15,6 +16,7 @@ export default function NetworkRoot() {
return (
<div className="flex flex-col h-full relative">
<ParticleListView path={path} />
<AutoplayOverlay networkId={networkId!} />
<ComposeOverlay networkId={networkId!} />
<ControlsIndicator type={"new"} />
</div>