VerticalNavBar prop types fixed

This commit is contained in:
nklhrstv 2020-02-18 21:56:27 +02:00
parent cc6116e5a5
commit c011b46d73

View file

@ -33,9 +33,11 @@ VerticalNavBar.displayName = 'VerticalNavBar';
VerticalNavBar.propTypes = {
className: PropTypes.string,
route: PropTypes.string,
tabs: PropTypes.arrayOf(PropTypes.shape({
icon: PropTypes.string,
route: PropTypes.string,
label: PropTypes.string,
icon: PropTypes.string,
href: PropTypes.string,
onClick: PropTypes.func
}))