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

10 lines
205 B
TypeScript

import React from 'react';
import type { NextPage } from 'next';
import UserList from '../../components/UserList';
const UsersPage: NextPage = () => {
return <UserList />;
};
export default UsersPage;