2025-06-11 16:40:31 -04:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
2025-08-26 00:04:53 +02:00
|
|
|
import type 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
|
|
|
}) => (
|
2026-02-18 16:54:01 +01:00
|
|
|
<StatsDisplay
|
|
|
|
|
title="Agent powering down. Goodbye!"
|
|
|
|
|
duration={duration}
|
|
|
|
|
footer="Tip: Resume a previous session using gemini --resume or /resume"
|
|
|
|
|
/>
|
2025-06-30 20:28:49 -04:00
|
|
|
);
|