1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-14 10:42:48 +00:00

added youtube downloader

This commit is contained in:
2017-07-21 00:06:59 -05:00
parent 4baad6b025
commit 43fadf9c6a
14 changed files with 240 additions and 20 deletions

View File

@@ -6,12 +6,14 @@ import Wrapper from './Wrapper';
import Home from './pages/Home/Home';
import Soundboard from './pages/Soundboard/Soundboard';
import NotFound from './pages/NotFound/NotFound';
import Downloader from './pages/Downloader/Downloader';
ReactDOM.render(
<Router history={browserHistory}>
<Route path="/" component={Wrapper}>
<IndexRoute component={Home}/>
<Route path="/soundboard" component={Soundboard}/>
<Route path="/downloader" component={Downloader}/>
<Route path="*" component={NotFound}/>
</Route>
</Router>