Menu
×
×
正确
import { useState } from "react";
function KeepCount() {
const [@(5), @(8)] = useState(0);
}
import { useState } from "react";
function KeepCount() {
const [count, setCount] = useState(0);
}
不正确
点击 此处 重试 正确
下一题 ❯import { useState } from "react"; function KeepCount() { const [w3exercise_input_no_0,w3exercise_input_no_1] = useState(0); } |