import React from "react"; type ItemProps = { id: number name: string } const Item: React.FC<ItemProps> = ({ id, name }) => ( <section> my id is {id} my ...
確定! 回上一頁