Files
jellyseerr/src/pages/requests/index.tsx

9 lines
192 B
TypeScript

import RequestList from '@app/components/RequestList';
import type { NextPage } from 'next';
const RequestsPage: NextPage = () => {
return <RequestList />;
};
export default RequestsPage;