mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
13 lines
303 B
TypeScript
13 lines
303 B
TypeScript
'use client';
|
|
import ProfileHeader from './ProfileHeader';
|
|
import ProfileSettings from './ProfileSettings';
|
|
import styles from './ProfilePage.module.css';
|
|
|
|
export default function () {
|
|
return (
|
|
<div className={styles.container}>
|
|
<ProfileHeader />
|
|
<ProfileSettings />
|
|
</div>
|
|
);
|
|
}
|