1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-26 20:54:21 +01:00

fix button style

This commit is contained in:
Sylvain 2021-06-17 17:10:48 +02:00
parent bff5415a1e
commit db242e1f27

View File

@ -65,10 +65,8 @@ export const ReserveButton: React.FC<ReserveButtonProps> = ({ currentUser, machi
}
return (
<span>
<button onClick={() => handleClick(currentUser)} className={className}>
{children}
</button>
</span>
<button onClick={() => handleClick(currentUser)} className={className}>
{children}
</button>
);
}