* MED-151: add profile view and working smoking dashboard card * update zod * move some components to shared * move some components to shared * remove console.logs * remove unused password form components * only check null for variant * use pathsconfig
18 lines
509 B
TypeScript
18 lines
509 B
TypeScript
import { MultiFactorAuthFactorsList } from '@kit/accounts/components';
|
|
|
|
import SettingsSectionHeader from '../_components/settings-section-header';
|
|
|
|
export default function SecuritySettingsPage() {
|
|
return (
|
|
<div className="mx-auto w-full bg-white p-6">
|
|
<div className="space-y-6">
|
|
<SettingsSectionHeader
|
|
titleKey="account:securityTabLabel"
|
|
descriptionKey="account:securityTabDescription"
|
|
/>
|
|
<MultiFactorAuthFactorsList />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|