aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/admin/MoreAdmin.tsx
blob: 042789a09bbe2a33433cbcd30907f8c3a6b875fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from "react";

import { AuthUser } from "@/services/user";

export interface MoreAdminProps {
  user: AuthUser;
}

const MoreAdmin: React.FC<MoreAdminProps> = () => {
  return <>More...</>;
};

export default MoreAdmin;