client/apps/web/src/features/conversation/modal/community.tsx
2026-03-14 12:43:26 +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>;
}