Skip to content

Instantly share code, notes, and snippets.

@Numel2020
Created June 21, 2017 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Numel2020/d601b74698c226ee967f48b2aa9f94cf to your computer and use it in GitHub Desktop.
Save Numel2020/d601b74698c226ee967f48b2aa9f94cf to your computer and use it in GitHub Desktop.
Erics code implementation of TransitionGroup pt 1
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