@kadconsulting/dry
Version:
KAD Reusable Component Library
9 lines (8 loc) • 296 B
TypeScript
import { FC } from 'react';
import './DesktopSubNavigationContent.scss';
import { SubNavigation as SubNavigationType } from '../NavBarTypes';
type Props = {
subNavigation: SubNavigationType;
};
declare const DesktopSubNavigationContent: FC<Props>;
export default DesktopSubNavigationContent;