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

6 lines
167 B
TypeScript
Raw Normal View History

import React from 'react';
export type ChatSurfaceMode = 'default' | 'mini-chat';
export const ChatSurfaceContext = React.createContext<ChatSurfaceMode>('default');