import React from 'react'; interface StudySummaryProps { date: string; description: string; } /** * StudySummary component displays a summary of a study with its date and description. * * @param props - The properties for the StudySummary component * @param props.date - The date of the study * @param props.description - The description of the study */ const StudySummary: React.FC = ({ date, description }) => { return (
{date}
{description}
); }; export { StudySummary };