## Version `"react-router-dom": "^4.0.0-beta.5"` ## Test Case ```js import { Switch, Route } from 'react-router-dom' const Foo = () => <Route path="/" component={Home}/> <Switch> <Foo/> </Switch> ``` ## Expected Behavior Should behave like this: ```js import { Switch, Route } from 'react-router-dom' <Switch> <Route path="/" component={Home}/> </Switch> ``` ## Actual Behavior It looks like nothing is rendered? (Note: Is there any jsfiddle/jsbin template for v4? Only found v2.)