12 lines
299 B
TypeScript
Raw Permalink Normal View History

2026-04-03 12:35:13 +02:00
import { ListUsers } from '@/actions/users/UserActions'
import ChatBox from '@/components/chat/ChatBox'
import React from 'react'
export default async function LoggedIn() {
const users = await ListUsers()
return (<>
<div>{JSON.stringify(users)}</div>
<ChatBox />
</>)
}