App.tsx 198 Bytes
Newer Older
Yoon, Daeki's avatar
Yoon, Daeki committed
1
import React from "react";
2
3
import { Outlet } from "react-router-dom";
import { Header } from "./commons";
Yoon, Daeki's avatar
Yoon, Daeki committed
4

5
6
7
8
9
10
11
12
const App = () => (
  <div>
    <Header />
    <Outlet />
  </div>
);

export default App;