summaryrefslogtreecommitdiff
path: root/admin/src/App.js
blob: 6d24fc0d939349dce07b5caa33aa09b7d115d80c (plain)
1
2
3
4
5
6
7
8
9
10
11
import Index from './routes';

function App() {
  return (
    <div className='App'>
      <Index />
    </div>
  );
}

export default App;