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

12 lines
194 B
TypeScript
Raw Normal View History

2024-06-29 05:22:22 +00:00
import { GeneralSettings } from "./home";
const ProtectedDashboardPage = async () => {
return (
<div>
<GeneralSettings />
</div>
);
};
export default ProtectedDashboardPage;