mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 04:08:45 -05:00
10 lines
205 B
TypeScript
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;
|