File size: 139 Bytes
2b66f8c
 
 
 
 
1
2
3
4
5
6
import { createContext } from 'react';

export const ConversationContext = createContext<
  null | ((isPlaying: boolean) => void)
>(null);