Код: Выделить всё
import React, { useState } from 'react';
import { NumberBox } from 'devextreme-react';
const MyNumberBox = () => {
const [value, setValue] = useState(null);
const handleValueChanged = (e) => {
setValue(e.value);
};
const borderColor = value && value > 20 ? 'red' : ''; // Conditional border color
return (
);
};
export default MyNumberBox;
Подробнее здесь: https://stackoverflow.com/questions/783 ... -numberbox
Мобильная версия