src/features/chat-page/chat-menu/chat-group.tsx (10 lines of code) (raw):
import { PropsWithChildren } from "react";
interface Props extends PropsWithChildren {
title: string;
}
export const ChatGroup = (props: Props) => {
return (
<div className="flex flex-col">
<div className="text-sm text-muted-foreground p-3">{props.title}</div>
<div>{props.children}</div>
</div>
);
};