You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

20 lines
383 B

import React from "react";
import PropTypes from "prop-types";
import { Button } from 'antd';
function MyButton({ text, onClick }) {
return (
<div>
<Button type="primary" onClick={ onClick }>
{ text }
</Button>
</div>
);
};
MyButton.propTypes = {
text: PropTypes.string.isRequired,
onClick: PropTypes.func.isRequired
};
export default MyButton;