UNPKG

@web-package/react-widgets

Version:

This is package that provides templates that can significantly reduce CSS development works in a react development environment.

8 lines (7 loc) 431 B
import { FunctionComponent, ReactElement, ReactNode } from "react"; export interface ScaffoldProperties { element?: ReactElement; children?: ReactNode; component?: FunctionComponent; } export declare function Scaffold({ element, component, children }: ScaffoldProperties): string | number | boolean | ReactElement<any, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | FunctionComponent<{}>;