mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-06 14:47:54 -05:00
10 lines
265 B
TypeScript
10 lines
265 B
TypeScript
import React from 'react';
|
|
import type { NextPage } from 'next';
|
|
import RequestResetLink from '../../components/ResetPassword/RequestResetLink';
|
|
|
|
const RequestResetLinkPage: NextPage = () => {
|
|
return <RequestResetLink />;
|
|
};
|
|
|
|
export default RequestResetLinkPage;
|