UNPKG

@krowdy-ui/views

Version:

React components that implement Google's Material Design.

12 lines (8 loc) 250 B
import { TopAppBarProps } from '../TopAppBar' import { MainProps } from '../Main'; export type RootProps = { topAppBarProps: Partial<TopAppBarProps> mainProps: Partial<MainProps> } declare const Root: React.FC<RootProps>; export default Root;