fix(checkbox): add displayName

This commit is contained in:
p-sw 2024-07-12 01:27:07 +09:00
parent 232c832b25
commit e9d9bef4bf

View File

@ -110,5 +110,6 @@ const Checkbox = React.forwardRef<HTMLInputElement, CheckboxProps>(
); );
}, },
); );
Checkbox.displayName = "Checkbox";
export { Checkbox }; export { Checkbox };