mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-02 20:58:56 -05:00
* feat: add foundation for tooltips * fix: add lang * refactor: remove React import where no longer necessary
9 lines
167 B
TypeScript
9 lines
167 B
TypeScript
import type { NextPage } from 'next';
|
|
import Discover from '../components/Discover';
|
|
|
|
const Index: NextPage = () => {
|
|
return <Discover />;
|
|
};
|
|
|
|
export default Index;
|