import React, { useState } from 'react'; function Example() { // Khai báo một biến gọi là "count" const [count, setCount] = useState(0); return ( <div> ...
確定! 回上一頁