import React from 'react'; interface ContentViewportProps { children: React.ReactNode; className?: string; fullWidth?: boolean; } /** * ContentViewport is the main data zone of the "Telemetry Workspace". * It houses the primary content, track maps, and data tables. * Aligned with "Precision Racing Minimal" theme. */ export function ContentViewport({ children, className = '', fullWidth = false }: ContentViewportProps) { return (
{children}
); }