components/Button.tsx import React from "react"; type ButtonProps = { text: string; } export const Button: React.FC<ButtonProps> = ({ text }) => { return ...
確定! 回上一頁