UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 353 B
import React, { ReactNode } from 'react'; import { ScrollAreaProps } from '@mantine/core'; type LayoutProps = { heading: string; children: ReactNode; stickyActions?: ReactNode; } & ScrollAreaProps; export declare const Layout: ({ heading, children, stickyActions, ...scrollAreaProps }: LayoutProps) => React.JSX.Element; export {};