Initial setup

This commit is contained in:
Senad Uka
2019-05-24 14:04:32 +02:00
parent 30f0874490
commit 84443783da
26 changed files with 13324 additions and 1 deletions

19
client/src/App.js Normal file
View File

@@ -0,0 +1,19 @@
import React, { Component } from 'react';
import './App.css';
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom';
import Home from './scenes/Home';
import NotFound from './scenes/NotFound';
class App extends Component {
render() {
return (
<Router>
<Switch>
<Route exact path="/" component={Home} />
<Route component={NotFound} />
</Switch>
</Router>
);
}
}
export default App;