diff --git a/src/dialog.jsx b/src/dialog.jsx index 568807e44b391e..2590d135e696fc 100644 --- a/src/dialog.jsx +++ b/src/dialog.jsx @@ -49,7 +49,12 @@ let TransitionItem = React.createClass({ }, render() { - return
+ let { + style, + ...other, + } = this.props; + + return
{this.props.children}
; },