12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
import type { Metadata } from "next";
|
|
import AdminUsers from "@/views/AdminUsers";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "مدیریت کاربران",
|
|
robots: { index: false, follow: false },
|
|
};
|
|
|
|
export default function AdminUsersPage() {
|
|
return <AdminUsers />;
|
|
}
|