@pagamio/frontend-commons-lib
Version:
Pagamio library for Frontend reusable components like the form engine and table container
7 lines (6 loc) • 305 B
TypeScript
import type { PropsWithChildren } from 'react';
interface AppLayoutContentProps extends PropsWithChildren {
isSidebarHidden?: boolean;
}
declare const AppLayoutContent: ({ children, isSidebarHidden }: AppLayoutContentProps) => import("react/jsx-runtime").JSX.Element;
export default AppLayoutContent;