ragflow / web /src /pages /chat /context.ts
balibabu
feat: After the voice in the new conversation window is played, jump to the tab of the conversation #1877 (#2440)
2b66f8c
raw
history blame
139 Bytes
import { createContext } from 'react';
export const ConversationContext = createContext<
null | ((isPlaying: boolean) => void)
>(null);