UNPKG

react-grid-heatmap

Version:

A react component for heatmap visualisation in grid layout

9 lines (8 loc) 214 B
/// <reference types="react" /> interface Props { children: any; reverse?: boolean; grow?: boolean; } export default function Column({ children, grow, reverse }: Props): JSX.Element; export {};