mirror of
https://github.com/sct/overseerr.git
synced 2025-12-29 00:56:55 +01:00
9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
import Setup from '@app/components/Setup';
|
|
import type { NextPage } from 'next';
|
|
|
|
const SetupPage: NextPage = () => {
|
|
return <Setup />;
|
|
};
|
|
|
|
export default SetupPage;
|