合并分支

This commit is contained in:
筱野
2025-08-23 15:23:50 +08:00
31 changed files with 2251 additions and 3 deletions

View File

@@ -11,7 +11,10 @@ interface RangeProps {
onChange?: (value: [number, number]) => void;
disabled?: boolean;
className?: string;
<<<<<<< HEAD
showTitle?: boolean;
=======
>>>>>>> 2b7c9497c6d5b1f3edb2ddd937855570c0cc8eca
}
const NtrpRange: React.FC<RangeProps> = ({
@@ -22,7 +25,10 @@ const NtrpRange: React.FC<RangeProps> = ({
onChange,
disabled = false,
className,
<<<<<<< HEAD
showTitle = true,
=======
>>>>>>> 2b7c9497c6d5b1f3edb2ddd937855570c0cc8eca
}) => {
const [currentValue, setCurrentValue] = useState<[number, number]>(value);