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

15 lines
281 B
TypeScript

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