UNPKG

@glodon-aiot/react-components

Version:

aiot react components

10 lines (9 loc) 233 B
/// <reference types="react" /> import { Point } from '.'; export interface LineElementProps { start: Point; end: Point; } export interface State { } export default function LineElement(props: LineElementProps): JSX.Element;