Created
June 21, 2017 20:35
-
-
Save Numel2020/d601b74698c226ee967f48b2aa9f94cf to your computer and use it in GitHub Desktop.
Erics code implementation of TransitionGroup pt 1
This file contains 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 React, {Component} from 'react'; | |
import { BrowserRouter as Router } from 'react-router-dom'; | |
import Page from './Page'; | |
class App3 extends Component { | |
render(){ | |
return ( | |
<Router basename="react-router-transitions"> | |
<Page/> | |
</Router> | |
); | |
} | |
} | |
export default App3; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment