library/pages/index.tsx

8 lines
130 B
TypeScript
Raw Normal View History

2021-11-16 22:18:20 -05:00
import type { NextPage } from "next";
2021-10-30 19:44:32 -04:00
const Home: NextPage = () => {
2021-11-13 20:41:05 -05:00
return <main>I am a book</main>;
};
2021-10-30 19:44:32 -04:00
2021-11-13 20:41:05 -05:00
export default Home;