Spaces:
Sleeping
Sleeping
File size: 320 Bytes
bfbf1a7 96ac62a bfbf1a7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
'use client';
import { chatViewMode } from '@/state/chat';
import { useAtom } from 'jotai';
import React from 'react';
export interface ChatAdminToggleProps {}
const ChatAdminToggle: React.FC<ChatAdminToggleProps> = () => {
const modeAtom = useAtom(chatViewMode);
return null;
};
export default ChatAdminToggle;
|