import React, { useState } from 'react'; function Example() { // 宣告一個新的state 變數,我們稱作為「 count」。 const [count, setCount] = useState(0); ...
確定! 回上一頁