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