UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

4 lines (3 loc) 205 B
import React, { useContext } from 'react'; export const LegacyThreadContext = React.createContext({ legacyThread: undefined }); export const useLegacyThreadContext = () => useContext(LegacyThreadContext);