daphnis/app/(authenticated)/(admin)/admin/(admin components)/home/page.tsx
2024-06-29 01:22:22 -04:00

15 lines
265 B
TypeScript

import { getAuth } from "@/auth/queries/getauth";
import AdminHome from "./home";
const ProtectedDashboardPage = async () => {
const { user } = await getAuth();
return (
<div>
<AdminHome />
</div>
);
};
export default ProtectedDashboardPage;