import React from "react"; type Props = React.PropsWithChildren<{ onClick: () => void; }>; function Button({ children, onClick }: Props) ...
確定! 回上一頁