mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 20:28:40 -05:00
9 lines
169 B
TypeScript
9 lines
169 B
TypeScript
import Discover from '@app/components/Discover';
|
|
import type { NextPage } from 'next';
|
|
|
|
const Index: NextPage = () => {
|
|
return <Discover />;
|
|
};
|
|
|
|
export default Index;
|