16 lines
399 B
TypeScript
Raw Normal View History

import { AdminAuthGuard } from "@/lib/auth-guard";
import React from "react";
export default async function UserPayments() {
await AdminAuthGuard();
return (
<div>
<div className="flex justify-between items-center border-[1px] rounded-md border-dashed font-bold title-bg py-4 px-2 mb-4">
<h3 className="text-sarLinkOrange text-2xl">
User Payments
</h3>
</div>
</div>
);
}