Created
January 21, 2019 19:31
-
-
Save iampava/d6c44b200629bdadf1c2c21bec823cba to your computer and use it in GitHub Desktop.
#2 JavaScript: fast and furious
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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