import React from "react"; import cx from "classnames"; import { useChat } from "../../hooks"; import "./UserList.css"; interface Props { fluid?: boolean; } export function UserList({ fluid = false }: Props) { const { online } = useChat(); return (

Users in chat right now

{online.length}
); }