Make transition prop optional

This prop is optional in both `<Modal />` and `<Overlay />` components
This commit is contained in:
Anton Vasin
2017-08-29 14:55:55 +03:00
committed by GitHub
parent d191aca2cb
commit 60cbeef407

View File

@@ -29,5 +29,5 @@ interface OverlayProps extends TransitionCallbacks, PortalProps, PositionProps {
* A `react-transition-group@2.0.0` `<Transition/>` component
* used to animate the overlay as it changes visibility.
*/
transition: Element;
transition?: Element;
}