Skip to content

Instantly share code, notes, and snippets.

@pierodev0
pierodev0 / useCounter.ts
Last active March 3, 2025 20:38
opcional min max
import { useState } from 'react';
type UseCounterConfig = {
min?: number;
max?: number;
};
type CounterActions = {
increment: () => void;
decrement: () => void;