UNPKG

react-raster

Version:

Advanced grid- and styling-system which is highly customizable and ready for server-side-rendering.

11 lines (10 loc) 308 B
import React from "react"; interface Props { className: string; attrs?: any; tag?: string; children: React.ReactNode; component?: React.ReactElement; } declare const Container: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLElement>>; export default Container;