10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
|
import { useTimelineStream } from './useTimelineStream';
|
||
|
|
||
|
function useGroupStream(groupId: string) {
|
||
|
return useTimelineStream(
|
||
|
`group:${groupId}`,
|
||
|
`group&group=${groupId}`,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export { useGroupStream };
|