import { PropsWithChildren } from 'react' import { cn } from 'ui' const ReportStickyNav = ({ content, children, className, }: PropsWithChildren<{ className?: string; content: React.ReactNode }>) => { return (
{content}
{children}
) } export default ReportStickyNav