mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
13 lines
282 B
TypeScript
13 lines
282 B
TypeScript
type FinalSummaryProps = {
|
|
text: string;
|
|
};
|
|
|
|
export default function FinalSummary(props: FinalSummaryProps) {
|
|
return (
|
|
<div className="overflow-y-auto h-auto max-h-full">
|
|
<h2 className="text-xl font-bold">Final Summary</h2>
|
|
<p>{props.text}</p>
|
|
</div>
|
|
);
|
|
}
|