8 lines
111 B
TypeScript
8 lines
111 B
TypeScript
|
import type { NextPage } from "next";
|
||
|
|
||
|
const Home: NextPage = () => {
|
||
|
return <></>;
|
||
|
};
|
||
|
|
||
|
export default Home;
|