shellphone.app/app/routes/__app/settings/account.tsx

16 lines
432 B
TypeScript
Raw Normal View History

2022-05-14 10:22:06 +00:00
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>
);
}