9 lines
151 B
TypeScript
9 lines
151 B
TypeScript
import React from 'react';
|
|
import { NextPage } from 'next';
|
|
|
|
const Index: NextPage = () => {
|
|
return <div>Overseerr!</div>;
|
|
};
|
|
|
|
export default Index;
|