ragflow / web /src /pages /chat /context.ts
Starowo's picture
Upload 1411 files
b9fe2b4 verified
raw
history blame contribute delete
139 Bytes
import { createContext } from 'react';
export const ConversationContext = createContext<
null | ((isPlaying: boolean) => void)
>(null);