client/packages/web/src/features/conversation/modal/community.tsx
2026-03-10 20:44:25 +01:00

5 lines
212 B
TypeScript

import type { Community } from "@tensamin/shared/features/conversation/schema";
export default function CommunityModal(props: { community: Community }) {
return <div>{props.community.community_title}</div>;
}