Billy Vong 7ce5673936 addon info: make propTypes table better
* more details for arrayOf, objectOf, shape, oneOf, oneOfType
* refactored into cleaner code + many smaller components
2017-08-23 15:39:12 -07:00

36 lines
847 B
JavaScript

import PropTypes from 'prop-types';
import React from 'react';
const Button = ({ disabled, label, style, onClick }) => (
<button disabled={disabled} onClick={onClick}>
{label}
</button>
);
Object.assign(Button, {
displayName: 'Button',
propTypes: {
label: PropTypes.string.isRequired,
style: PropTypes.object,
disabled: PropTypes.bool,
onClick: PropTypes.func,
array: PropTypes.array,
arrayOf: PropTypes.arrayOf(PropTypes.string),
oneOf: PropTypes.oneOf(['foo', 'bar']),
shape: PropTypes.shape({
foo: PropTypes.string,
bar: PropTypes.number,
}),
nestedArrayOf: PropTypes.arrayOf(PropTypes.shape({
foo: PropTypes.shape({
baz: PropTypes.string,
bar: PropTypes.arrayOf({
PropTypes.string
}),
}),
})),
},
});
export default Button;