Live video on the AT Protocol
79
fork

Configure Feed

Select the types of activity you want to include in your feed.

at natb/hide-msg 10 lines 269 B view raw
1import { createContext } from "react"; 2import { StreamplaceStore } from "../streamplace-store/streamplace-store"; 3 4type StreamplaceContextType = { 5 store: StreamplaceStore; 6}; 7 8export const StreamplaceContext = createContext<StreamplaceContextType | null>( 9 null, 10);