mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
feat(login component/route): add: Login Component and Route
This commit is contained in:
13
src/pages/login.tsx
Normal file
13
src/pages/login.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import React from 'react';
|
||||
import { NextPage } from 'next';
|
||||
import Login from '../components/Login';
|
||||
|
||||
const LoginPage: NextPage = () => {
|
||||
return (
|
||||
<div className="w-full">
|
||||
<Login />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default LoginPage;
|
||||
Reference in New Issue
Block a user