import React from "react"
import PropTypes from "prop-types"
const Button = ({ title }) => {
return <button>{title}</button>
}
Button.defaultProps = {
title: "Title"
}
Button.propTypes = {
title: PropTypes.string
}
export default Button
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)