Admin.tsx 185 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
2
3
4
5
6
7
import React from "react";
import { Link, Outlet } from "react-router-dom";
import { SideBar } from "./SideBar";

export const Admin = () => {
  return <div className="flex"></div>;
};