더북(TheBook)

src/components/Button.tsx

export default function Button({
  children,
  handleClick,
}: {
  children: React.ReactNode;
  handleClick: () => void;
}) {
  return <button onClick={handleClick}>{children}</button>;
}

본문으로