add isShown prop

This commit is contained in:
Greg Thompson
2017-12-04 14:14:28 -06:00
parent 0b8cd7e32f
commit 661b60fade
3 changed files with 5 additions and 2 deletions

View File

@@ -11,7 +11,8 @@ export const DeepLinkingLink = ({ isDeepLinkingEnabled, path, text }) => {
)
}
DeepLinkingLink.propTypes = {
isDeepLinkingEnabled: PropTypes.boolean,
isDeepLinkingEnabled: PropTypes.bool,
isShown: PropTypes.bool,
path: PropTypes.string,
text: PropTypes.string
}