Files
HKSingleParty/03_source/frontend/src/pages/dashboard/user/account/notifications.tsx
2025-05-28 09:55:51 +08:00

20 lines
429 B
TypeScript

import { CONFIG } from 'src/global-config';
import { AccountNotificationsView } from 'src/sections/account/view';
// ----------------------------------------------------------------------
const metadata = {
title: `Account notifications settings | Dashboard - ${CONFIG.appName}`,
};
export default function Page() {
return (
<>
<title>{metadata.title}</title>
<AccountNotificationsView />
</>
);
}