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