UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

9 lines (8 loc) 259 B
import React, { ReactNode } from 'react'; export interface DashboardLayoutProps { children: ReactNode; className?: string; initialCollapsed?: boolean; header?: ReactNode; } export declare const DashboardLayout: React.FC<DashboardLayoutProps>;