library/pages/index.tsx

8 lines
128 B
TypeScript

import type {NextPage} from 'next';
const Home: NextPage = () => {
return <main>I am a book</main>;
};
export default Home;