UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

10 lines (9 loc) 261 B
/// <reference types="react" /> import { GridProps } from "./grid"; import GridItem from "./grid-item"; interface GridInterface { (props: GridProps): JSX.Element; Item: typeof GridItem; } declare const Grid: GridInterface; export default Grid;