Files
jellyseerr/src/pages/index.tsx

9 lines
169 B
TypeScript

import Discover from '@app/components/Discover';
import type { NextPage } from 'next';
const Index: NextPage = () => {
return <Discover />;
};
export default Index;