19 lines
407 B
TypeScript
19 lines
407 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { StatsDisplay } from './StatsDisplay.js';
|
|
|
|
interface SessionSummaryDisplayProps {
|
|
duration: string;
|
|
}
|
|
|
|
export const SessionSummaryDisplay: React.FC<SessionSummaryDisplayProps> = ({
|
|
duration,
|
|
}) => (
|
|
<StatsDisplay title="Agent powering down. Goodbye!" duration={duration} />
|
|
);
|