UNPKG

react-timekeeper

Version:

Time picker based on the style of the Google Keep app

8 lines (7 loc) 206 B
/// <reference types="react" /> import { ElementRef } from '../helpers/types'; interface Props { clockEl: ElementRef; } export default function ClockWrapper({ clockEl }: Props): JSX.Element; export {};