task11_testing/src/component/button.jsx
2025-01-28 18:22:21 +05:30

12 lines
174 B
JavaScript

import React from 'react';
const Button = ({ label, type = 'button' }) => {
return (
<button type={type} >
{label}
</button>
);
};
export default Button;