@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 353 B
TypeScript
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 {};