@cmk/fe_utils
Version:
frontend utility library
12 lines (10 loc) • 437 B
TypeScript
import { NavContainerComponentPropertys } from '../../componentProperty';
import { PropsWithChildren } from 'react';
export type NavContainerWrapperProps = {
items: {
value: string;
childId: string;
}[];
navigationElementId: string;
};
export declare const NavContainerWrapper: (props: PropsWithChildren<NavContainerWrapperProps & NavContainerComponentPropertys>) => import("react/jsx-runtime").JSX.Element;