seti-ramesesv1
Version:
Reusable components and context for Next.js apps
13 lines (12 loc) • 346 B
TypeScript
type SidebarLayoutProps = {
title?: string;
items: Record<string, any>[];
activeItem: string;
target: string;
showSidebar?: boolean;
showToggle?: boolean;
openItem: (item: any) => void;
defaultOpenFirstDropdown?: boolean;
};
declare const SidebarLayout: React.FC<SidebarLayoutProps>;
export default SidebarLayout;