17 lines
407 B
TypeScript
17 lines
407 B
TypeScript
import { CONFIG } from 'src/global-config';
|
|
import { AccountGeneralView } from 'src/sections/account/view';
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
const metadata = { title: `Account general settings | Dashboard - ${CONFIG.appName}` };
|
|
|
|
export default function Page() {
|
|
return (
|
|
<>
|
|
<title>{metadata.title}</title>
|
|
|
|
<AccountGeneralView />
|
|
</>
|
|
);
|
|
}
|