mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-29 20:20:16 +00:00
19 lines
435 B
JavaScript
19 lines
435 B
JavaScript
// src/components-page/sign-in.tsx
|
|
import { AuthPage } from "./auth-page";
|
|
import { jsx } from "react/jsx-runtime";
|
|
function SignIn(props) {
|
|
return /* @__PURE__ */ jsx(
|
|
AuthPage,
|
|
{
|
|
fullPage: !!props.fullPage,
|
|
type: "sign-in",
|
|
automaticRedirect: !!props.automaticRedirect,
|
|
extraInfo: props.extraInfo,
|
|
firstTab: props.firstTab
|
|
}
|
|
);
|
|
}
|
|
export {
|
|
SignIn
|
|
};
|
|
//# sourceMappingURL=sign-in.js.map
|