App.js 675 Bytes
Newer Older
Yoon, Daeki's avatar
Yoon, Daeki committed
1
2
import React from 'react';
import './App.css';
3
4
5
import Home from './Home'
import Quiz from './Quiz'
import End from './End'
Yoon, Daeki's avatar
Yoon, Daeki committed
6

7
import { BrowserRouter as Router, Link, Switch, Route } from 'react-router-dom';
JeongYeonwoo's avatar
JeongYeonwoo committed
8

9
function App() {
JeongYeonwoo's avatar
JeongYeonwoo committed
10
  return (
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
    <Router>
      <header>
        <Link to="/">
          <button>Calculus</button>
        </Link>
      </header>
      <hr/>
      <div>
        <Switch>
          <Route exact path="/">
            <Home/>
          </Route>
          <Route path="/quiz">
            <Quiz/>
          </Route>
          <Route path="/end">
            <End/>
          </Route>
        </Switch>
JeongYeonwoo's avatar
JeongYeonwoo committed
30
      </div>
31
    </Router>
JeongYeonwoo's avatar
JeongYeonwoo committed
32
33
34
  )
}

Yoon, Daeki's avatar
Yoon, Daeki committed
35

36
export default App;