Files
jellyseerr/src/pages/setup.tsx
Jeff Bentley 366074c12a [Design/Routes] Welcome Screen / Initial Setup (#42)
* 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>
2020-11-11 21:03:10 -05:00

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;