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.
1 parent 16c0a19 commit 44e99dbCopy full SHA for 44e99db
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