mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-29 04:00:09 +00:00
21 lines
808 B
JavaScript
21 lines
808 B
JavaScript
// src/components-page/account-settings/email-and-auth/email-and-auth-page.tsx
|
|
import { PageLayout } from "../page-layout";
|
|
import { EmailsSection } from "./emails-section";
|
|
import { MfaSection } from "./mfa-section";
|
|
import { OtpSection } from "./otp-section";
|
|
import { PasskeySection } from "./passkey-section";
|
|
import { PasswordSection } from "./password-section";
|
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
function EmailsAndAuthPage() {
|
|
return /* @__PURE__ */ jsxs(PageLayout, { children: [
|
|
/* @__PURE__ */ jsx(EmailsSection, {}),
|
|
/* @__PURE__ */ jsx(PasswordSection, {}),
|
|
/* @__PURE__ */ jsx(PasskeySection, {}),
|
|
/* @__PURE__ */ jsx(OtpSection, {}),
|
|
/* @__PURE__ */ jsx(MfaSection, {})
|
|
] });
|
|
}
|
|
export {
|
|
EmailsAndAuthPage
|
|
};
|
|
//# sourceMappingURL=email-and-auth-page.js.map
|