library/pages/index.tsx

9 lines
157 B
TypeScript
Raw Normal View History

2021-11-16 22:18:20 -05:00
import type { NextPage } from "next";
2021-11-16 22:38:00 -05:00
import React from "react";
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;