mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
10 lines
194 B
TypeScript
10 lines
194 B
TypeScript
import React from 'react';
|
|
import type { NextPage } from 'next';
|
|
import Discover from '../components/Discover';
|
|
|
|
const Index: NextPage = () => {
|
|
return <Discover />;
|
|
};
|
|
|
|
export default Index;
|