import "./FixedTabs.css"; import { ReactNode } from "react"; export function FixedTabs({ children }: { children: ReactNode }) { return
{children}
; }