mirror of
https://github.com/dyzulk/trustlab.git
synced 2026-01-26 13:32:06 +07:00
12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
|
|
import React, { Suspense } from 'react';
|
|
import ForgotPasswordClient from "./ForgotPasswordClient";
|
|
|
|
export default function ForgotPasswordPage() {
|
|
return (
|
|
<Suspense fallback={<div>Loading...</div>}>
|
|
<ForgotPasswordClient />
|
|
</Suspense>
|
|
);
|
|
}
|