We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 16c0a19 + 44e99db commit 6a4607eCopy full SHA for 6a4607e
src/App.js
@@ -15,14 +15,14 @@ import Checkbox from './Components/Checkbox';
15
import Radio from './Components/Radio';
16
17
const App = () => {
18
- const [textInputValue, setRextInputValue] = useState('Hello World');
+ const [textInputValue, setTextInputValue] = useState('Hello World');
19
const [selectValue, setSelectValue] = useState('grapefruit');
20
const [numberInputValue, setNumberInputValue] = useState(0);
21
const [checkboxValue, setCheckboxValue] = useState(true);
22
const [radioValue, setRadioValue] = useState('small');
23
24
const handleTextInputChange = value => {
25
- setRextInputValue(value);
+ setTextInputValue(value);
26
};
27
28
const handleSelectChange = value => {
0 commit comments