import { Head, Link } from '@inertiajs/react'; interface Scenario { id: number; name: string; created_at: string; updated_at: string; } interface Props { scenario: Scenario; } export default function Show({ scenario }: Props) { return ( <>
{/* Header */}
Back to Scenarios

{scenario.name}

Water flows through the pipeline into prioritized buckets

{/* Coming Soon Content */}

Scenario Dashboard Coming Soon

This will show buckets, streams, timeline, and calculation controls

Return to Scenarios
); }