daphnis/app/(authenticated)/(admin)/admin/(admin components)/home/page.tsx

15 lines
265 B
TypeScript
Raw Normal View History

2024-06-29 05:22:22 +00:00
import { getAuth } from "@/auth/queries/getauth";
import AdminHome from "./home";
const ProtectedDashboardPage = async () => {
const { user } = await getAuth();
return (
<div>
<AdminHome />
</div>
);
};
export default ProtectedDashboardPage;