This commit is contained in:
mario
2025-03-07 13:47:44 +07:00
commit c4efec5a14
3358 changed files with 303774 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
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<StudySummaryProps> = ({ date, description }) => {
return (
<div className="mx-2 my-0">
<div className="text-foreground text-sm">{date}</div>
<div className="text-muted-foreground pb-1 text-sm">{description}</div>
</div>
);
};
export { StudySummary };