"use client"; import { useState } from "react"; import { Hash, Plus, Minus, RotateCcw } from "lucide-react"; import { Button } from "@/components/ui/button"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Input } from "@/components/ui/input"; export default function CounterPage() { const [count, setCount] = useState(0); const [step, setStep] = useState(1); return (

计数器

简单的数值计数工具

当前数值
{count}
步长: setStep(Number(e.target.value) || 1)} className="w-20 text-center h-8" />
); }