aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app.jsx
blob: 9936415559a01e297d31cb5877b5db2f7c7b2725 (plain)
1
2
3
4
5
6
7
8
9
import Home from "./pages/Home/Home";

export function App(props) {
  return (
    <>
      <Home />
    </>
  );
}