mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
import RequestResetLink from '@app/components/ResetPassword/RequestResetLink';
|
|
import type { NextPage } from 'next';
|
|
|
|
const RequestResetLinkPage: NextPage = () => {
|
|
return <RequestResetLink />;
|
|
};
|
|
|
|
export default RequestResetLinkPage;
|