import React from 'react'; interface ContentShellProps { children: React.ReactNode; className?: string; } /** * ContentShell is the main data zone of the application. * It houses the primary content and track maps/data tables. */ export function ContentShell({ children, className = '' }: ContentShellProps) { return (
{children}
); }