UNPKG

react-grata

Version:

Light weight react grid layout component that supports IE 11. What you draw is what you get.

9 lines (8 loc) 264 B
import React from 'react'; import { CellProps, GridProps } from './typings'; export declare enum ClassName { GRID = "grata-grid", CELL = "grata-cell" } export declare const Grid: React.FC<GridProps>; export declare const Cell: React.FC<CellProps>;