UNPKG

@brendonhudnell/react-hexgrid

Version:

Interactive hexagon grids with React bindings

9 lines (8 loc) 219 B
/// <reference types="react" /> import Hex from './models/Hex'; export interface PathProps { start?: Hex; end?: Hex; } declare function Path({ start, end }: PathProps): JSX.Element; export default Path;