bigbuffet-rw/app/soapbox/features/chats/components/chat-widget.tsx
2022-08-31 13:21:43 -04:00

15 lines
270 B
TypeScript

import React from 'react';
import { ChatProvider } from 'soapbox/contexts/chat-context';
import ChatPane from './chat-pane/chat-pane';
const ChatWidget = () => {
return (
<ChatProvider>
<ChatPane />
</ChatProvider>
);
};
export default ChatWidget;