Spaces:
Running
Running
| import React from "react"; | |
| import ExampleTraceModal from "@/components/shared/modals/ExampleTraceModal"; | |
| // Wrapper view that re-uses ExampleTraceModal logic but fills workspace | |
| export default function ExampleTraceBrowserView() { | |
| return ( | |
| <div className="flex flex-col h-full bg-background"> | |
| <div className="flex-1 overflow-hidden mx-auto max-w-7xl p-6 space-y-6"> | |
| {/* Re-use modal component without onClose dependency */} | |
| <ExampleTraceModal onClose={() => {}} /> | |
| </div> | |
| </div> | |
| ); | |
| } | |