umami/src/app/(app)/settings/profile/page.js
2023-09-29 05:29:22 -07:00

12 lines
207 B
JavaScript

import ProfileHeader from './ProfileHeader';
import ProfileSettings from './ProfileSettings';
export default function () {
return (
<>
<ProfileHeader />
<ProfileSettings />
</>
);
}