17 lines
381 B
TypeScript
17 lines
381 B
TypeScript
import { Suspense } from "react";
|
|
import ResetPasswordForm from "./reset-password-form";
|
|
|
|
export default function ResetPasswordPage() {
|
|
return (
|
|
<Suspense
|
|
fallback={
|
|
<div className="min-h-screen flex items-center justify-center">
|
|
<p className="text-muted">Loading...</p>
|
|
</div>
|
|
}
|
|
>
|
|
<ResetPasswordForm />
|
|
</Suspense>
|
|
);
|
|
}
|