1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-10 09:02:49 +00:00

wip - oauth

This commit is contained in:
2018-02-09 23:58:23 -06:00
parent 1fdeb3783a
commit 33c6e8e3fc
10 changed files with 195 additions and 27 deletions

View File

@@ -9,6 +9,8 @@ import { NotFound } from './pages/NotFound/NotFound';
import { Downloader } from './pages/Downloader/Downloader';
import { Pubg } from './pages/Pubg/Pubg';
import { Clips } from './pages/Clips';
import { Oauth } from './pages/oauth/oauth';
import 'babel-polyfill';
ReactDOM.render(
<Router history={browserHistory}>
@@ -18,6 +20,7 @@ ReactDOM.render(
<Route path="/downloader" component={Downloader}/>
<Route path="/pubg" component={Pubg}/>
<Route path="/clips" component={Clips}/>
<Route path="/oauth" component={Oauth}/>
<Route path="*" component={NotFound}/>
</Route>
</Router>