UNPKG

@visualjs/grid

Version:
8 lines (7 loc) 274 B
import { ComponentType } from "preact"; import Grid from "../../grid"; export interface WithGridProps { grid: Grid; } export declare function withGrid<P extends WithGridProps>(Wrapped: ComponentType<P>): (props: Omit<P, 'grid'>) => JSX.Element; export default withGrid;