App.js 236 Bytes
Newer Older
Sangjune Bae's avatar
Sangjune Bae committed
1
2
3
import React from 'react';
import { BrowserRouter } from 'react-router-dom'
import MainRouter from './MainRouter';
Sangjune Bae's avatar
Sangjune Bae committed
4
5
6

function App() {
  return (
Sangjune Bae's avatar
Sangjune Bae committed
7
8
9
10
11

    <BrowserRouter>
      <MainRouter />
    </BrowserRouter>

Sangjune Bae's avatar
Sangjune Bae committed
12
13
14
15
  );
}

export default App;