cypress-testing/button-form/components/Button/index.jsx

17 lines
379 B
React
Raw Permalink Normal View History

2025-01-28 13:00:12 +00:00
/* eslint-disable react/prop-types */
const Button = ({ label, onClick }) => {
return (
<button
type="submit"
onClick={onClick}
className="px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600 transition cursor-pointer"
data-test="submit-button"
>
<p data-test="label-check">{label}</p>
</button>
);
};
export default Button;