UNPKG

botframework-webchat-component

Version:
8 lines (4 loc) 191 B
import { createContext } from 'react'; import type { ContextType } from './types'; const SendBoxContext = createContext<ContextType | undefined>(undefined); export default SendBoxContext;