ragflow / ragflow-main /web /src /pages /chat /context.ts
pandaall's picture
Upload 1223 files
ec730cc verified
import { createContext } from 'react';
export const ConversationContext = createContext<
null | ((isPlaying: boolean) => void)
>(null);