@cmk/fe_utils
Version:
frontend utility library
9 lines (7 loc) • 330 B
TypeScript
import { ReactNode } from 'react';
import { CommonComponentPropertys } from '../../componentProperty';
export type StackWrapperProps = CommonComponentPropertys & {
children?: ReactNode;
rootInjection: ReactNode;
};
export declare const StackWrapper: (props: StackWrapperProps) => import("react/jsx-runtime").JSX.Element;