Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
renderTransition (content) {
return (
{content}
)
}
* An element or a function returning an element to apply `aria-hidden` to
*/
applicationElement: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.element), PropTypes.element, PropTypes.func]),
/**
* An element or a function returning an element that wraps the content of the ``
*/
contentElement: PropTypes.oneOfType([PropTypes.element, PropTypes.func]),
shouldContainFocus: PropTypes.bool,
shouldReturnFocus: PropTypes.bool,
shouldCloseOnDocumentClick: PropTypes.bool,
shouldCloseOnEscape: PropTypes.bool,
/**
* The type of `` to use for animating in/out
*/
transition: Transition.propTypes.type,
/**
* Show the component; triggers the enter or exit animation
*/
in: PropTypes.bool,
/**
* Unmount the component (remove it from the DOM) when it is not shown
*/
unmountOnExit: PropTypes.bool,
/**
* Run the enter animation when the component mounts, if it is initially
* shown
*/
transitionOnMount: PropTypes.bool,
/**
* Run the enter animation
*/