Menu
×
×
正确!
REACT - 代码练习:完成此语句以使用 useState Hook 跟踪“count”变量。
import { useState } from "react";
function KeepCount() {
const [count, setCount] = useState(0);
}
不正确点击 这里 再试一次。 正确!下一个 ❯
import { useState } from "react";
function KeepCount() {
const [
, ] = useState(0);
}
|