'use client'; import RecentChats from '@components/RecentChats'; import { useRelayAPI } from '@components/RelayAPI'; export default function ChatPage() { const relayApi = useRelayAPI(); const sendNotify = ()=> { relayApi.broadcast('NOTIFY','This is a notification') } const joinNotifyChannel = ()=> { relayApi.joinChannel('NOTIFY') } const leaveNotifyChannel = ()=> { relayApi.leaveChannel('NOTIFY') } return (

Nexus MS

); }