mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
13 lines
293 B
TypeScript
13 lines
293 B
TypeScript
type FinalSummaryProps = {
|
|
text: string;
|
|
};
|
|
|
|
export default function FinalSummary(props: FinalSummaryProps) {
|
|
return (
|
|
<div className="min-h-[200px] overflow-y-auto mt-2 p-2 bg-white temp-transcription rounded">
|
|
<h2>Final Summary</h2>
|
|
<p>{props.text}</p>
|
|
</div>
|
|
);
|
|
}
|