import { createContext, useContext } from 'react'; import useAddedResponse from '~/hooks/Chat/useAddedResponse'; type TAddedChatContext = ReturnType; export const AddedChatContext = createContext({} as TAddedChatContext); export const useAddedChatContext = () => useContext(AddedChatContext);