UNPKG

@tech_with_shiva_769/generic-dashboard

Version:

A reusable role-based dashboard component library for React

7 lines (6 loc) 161 B
import React, { ReactNode } from 'react'; interface LayoutProps { children: ReactNode; } declare const Layout: React.FC<LayoutProps>; export default Layout;