import Link from "next/link"; export interface ActivityData { title: string; description: string; url: string | null; } interface ActivityProps { activity: ActivityData; } export const Activity: React.FC = ({ activity }) => { return (

{activity.title}

{activity.description}

{activity.url && ( 詳細 )}
); };