import React from 'react'; import { NestedNavigation as CoreNestedNavigation } from '@shoptet/ui-core-web'; import type { Exact, SafeOmit } from '@shoptet/utils'; export interface NestedNavigationContentProps extends SafeOmit, 'className'> {} export function NestedNavigationContent({ children, ...rest }: NestedNavigationContentProps) { rest satisfies Exact, typeof rest>; return ( {children} ); }