File size: 524 Bytes
c2ea5ed
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
  );
}