質問編集履歴
1
編集
title
CHANGED
File without changes
|
body
CHANGED
@@ -21,12 +21,12 @@
|
|
21
21
|
}
|
22
22
|
|
23
23
|
const App: React.FC = () => {
|
24
|
-
const [
|
24
|
+
const [task, setTask] = useState('')
|
25
25
|
const [ count, setcount ] = useState(0)
|
26
26
|
return (
|
27
27
|
<div>
|
28
28
|
<TextInput =
|
29
|
-
|
29
|
+
text={task}
|
30
30
|
handleInputChange={handleInputChange}
|
31
31
|
/>
|
32
32
|
</div>
|