mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
* feat(new component): welcome screen and initial setup component * feat(frontend): setup with login, settings, radarr/sonarr * feat(frontend): add login functionality to login step for setup Co-authored-by: Alexander Zoitos <azoitos1@gmail.com>
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
import React from 'react';
|
|
import { NextPage } from 'next';
|
|
import Setup from '../components/Setup';
|
|
|
|
const SetupPage: NextPage = () => {
|
|
return <Setup />;
|
|
};
|
|
|
|
export default SetupPage;
|