17 lines
386 B
TypeScript
17 lines
386 B
TypeScript
import { CONFIG } from 'src/global-config';
|
|
import { UserProfileView } from 'src/sections/user/view';
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
const metadata = { title: `User profile | Dashboard - ${CONFIG.appName}` };
|
|
|
|
export default function Page() {
|
|
return (
|
|
<>
|
|
<title>{metadata.title}</title>
|
|
|
|
<UserProfileView />
|
|
</>
|
|
);
|
|
}
|