fix(switch): add displayName

This commit is contained in:
p-sw 2024-07-12 01:37:41 +09:00
parent ce8dc422a4
commit 52996d3a76

View File

@ -80,5 +80,6 @@ const Switch = React.forwardRef<HTMLInputElement, SwitchProps>((props, ref) => {
</label>
);
});
Switch.displayName = "Switch";
export { Switch };