mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-09 19:46:37 +08:00
11 lines
194 B
TypeScript
11 lines
194 B
TypeScript
//app\auth\page.tsx
|
|
import { Login } from "./login";
|
|
import { Authenticator } from "@aws-amplify/ui-react";
|
|
export default function AuthPage() {
|
|
return (
|
|
<>
|
|
<Login />
|
|
</>
|
|
);
|
|
}
|