Created
January 7, 2019 09:33
-
-
Save supachaic/2e94dea540864ab2d37d3a255d13d7ef to your computer and use it in GitHub Desktop.
Add Video Input Component
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 { Route, Router } from 'react-router-dom'; | |
import createHistory from 'history/createBrowserHistory'; | |
import './App.css'; | |
import Home from './views/Home'; | |
import ImageInput from './views/ImageInput'; | |
import VideoInput from './views/VideoInput'; | |
class App extends Component { | |
render() { | |
return ( | |
<div className="App"> | |
<Router history={createHistory()}> | |
<div className="route"> | |
<Route exact path="/" component={Home} /> | |
<Route exact path="/photo" component={ImageInput} /> | |
<Route exact path="/camera" component={VideoInput} /> | |
</div> | |
</Router> | |
</div> | |
); | |
} | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment