forked from PolarisPyra/daphnis
15 lines
281 B
TypeScript
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;
|