refactor(all): migrate from React to Next.js
This commit is contained in:
11
src/app/admin/users/page.tsx
Normal file
11
src/app/admin/users/page.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
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 />;
|
||||
}
|
||||
Reference in New Issue
Block a user