You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
library/pages/index.tsx

9 lines
157 B

2 years ago
import type { NextPage } from "next";
2 years ago
import React from "react";
2 years ago
const Home: NextPage = () => {
2 years ago
return <main>I am a book</main>;
};
2 years ago
2 years ago
export default Home;