2025-06-11 16:40:31 -04:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import React from 'react';
|
2025-06-30 20:28:49 -04:00
|
|
|
import { StatsDisplay } from './StatsDisplay.js';
|
2025-06-11 16:40:31 -04:00
|
|
|
|
|
|
|
|
interface SessionSummaryDisplayProps {
|
|
|
|
|
duration: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const SessionSummaryDisplay: React.FC<SessionSummaryDisplayProps> = ({
|
|
|
|
|
duration,
|
2025-06-30 20:28:49 -04:00
|
|
|
}) => (
|
|
|
|
|
<StatsDisplay title="Agent powering down. Goodbye!" duration={duration} />
|
|
|
|
|
);
|