Skip to content

Instantly share code, notes, and snippets.

@iampava
Created January 21, 2019 19:31
Show Gist options
  • Save iampava/d6c44b200629bdadf1c2c21bec823cba to your computer and use it in GitHub Desktop.
Save iampava/d6c44b200629bdadf1c2c21bec823cba to your computer and use it in GitHub Desktop.
#2 JavaScript: fast and furious
import {
LazyLanding,
LazyHome
} from './pages/Pages.lazy';
class Root extends React.Component {
render() {
return (
<Switch>
<Route exact path="/" component={LazyLanding} />
<Route exact path="/home" component={LazyHome} />
</Switch>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment