Files
openchamber/packages/ui/src/components/chat/useChatSurfaceMode.ts
T

5 lines
209 B
TypeScript
Raw Normal View History

import React from 'react';
import { ChatSurfaceContext, type ChatSurfaceMode } from './chatSurfaceContextValue';
export const useChatSurfaceMode = (): ChatSurfaceMode => React.useContext(ChatSurfaceContext);