16 lines
432 B
TypeScript
16 lines
432 B
TypeScript
import ProfileInformations from "~/features/settings/components/account/profile-informations";
|
|
import UpdatePassword from "~/features/settings/components/account/update-password";
|
|
import DangerZone from "~/features/settings/components/account/danger-zone";
|
|
|
|
export default function Account() {
|
|
return (
|
|
<div className="flex flex-col space-y-6">
|
|
<ProfileInformations />
|
|
|
|
<UpdatePassword />
|
|
|
|
<DangerZone />
|
|
</div>
|
|
);
|
|
}
|