Skip to content

Instantly share code, notes, and snippets.

@diegohaz
Last active June 5, 2018 08:45
Show Gist options
  • Save diegohaz/fb6d48857aaae80267baa2842c91ea07 to your computer and use it in GitHub Desktop.
Save diegohaz/fb6d48857aaae80267baa2842c91ea07 to your computer and use it in GitHub Desktop.
const Button = ({ as: T, ...props }) => <T {...props} />;
Button.propTypes = {
as: PropTypes.oneOfType([PropTypes.string, PropTypes.func])
};
Button.defaultProps = {
as: "button"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment