Skip to content

Commit a3d6e2a

Browse files
committed
[changed] Render empty div before transition hooks
Fixes #77
1 parent 6fc35d1 commit a3d6e2a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

modules/components/Route.js

+5
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,11 @@ var Route = React.createClass({
213213
},
214214

215215
render: function () {
216+
// TODO: In React 0.11 we will be able to `return null` here.
217+
// https://github.com/facebook/react/issues/1058
218+
if (!this.state.path)
219+
return React.DOM.div();
220+
216221
return this.props.handler(computeHandlerProps(this.state.matches || [], this.state.activeQuery));
217222
}
218223

0 commit comments

Comments
 (0)