docs
evals
scenario-1
scenario-10
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
Build a React component for adjusting product prices with mouse wheel interaction support.
Create a component that allows users to adjust prices using various input methods including mouse wheel scrolling with modifier support.
import React from 'react';
export interface PriceAdjusterProps {
value?: number;
onChange?: (value: number | null) => void;
defaultValue?: number;
}
export const PriceAdjuster: React.FC<PriceAdjusterProps>;Provides numeric input component with mouse wheel support and step controls.
React library for building user interfaces.