react-use-precision-timer
Version:
A versatile precision timer hook for React. Doubles as a stopwatch.
8 lines (7 loc) • 318 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
import { UseTimerExample } from '../components/UseTimerExample';
declare const StoryComponent: typeof UseTimerExample;
declare const meta: Meta<typeof StoryComponent>;
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Example: Story;