Skip to content

Instantly share code, notes, and snippets.

View wakamsha's full-sized avatar
🐧

YAMADA Naoki wakamsha

🐧
View GitHub Profile
@wakamsha
wakamsha / memo.md
Last active March 10, 2024 16:33
React でより実用的な Button コンポーネントを作る Tips

ベースとなる Button コンポーネント

type Props = Partial<{
  children: ReactNode;
  type: ButtonHTMLAttributes<HTMLButtonElement>['type'];
  disabled: ButtonHTMLAttributes<HTMLButtonElement>['disabled'];
  tabIndex: ButtonHTMLAttributes<HTMLButtonElement>['tabIndex'];
  onClick: (e: MouseEvent<HTMLButtonElement>) => void;
}>;