fix(button): add displayName

This commit is contained in:
p-sw 2024-07-12 01:26:57 +09:00
parent 98dd58febb
commit 232c832b25

View File

@ -125,5 +125,6 @@ const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
);
},
);
Button.displayName = "Button";
export { Button };