subman-nextjs/src/app/page.tsx

12 lines
184 B
TypeScript
Raw Normal View History

2024-06-11 08:16:34 +00:00
import Image from "next/image";
import styles from "./page.module.css";
export default function Home() {
return (
<main className={styles.main}>
2024-06-11 13:37:22 +00:00
Hello
2024-06-11 08:16:34 +00:00
</main>
);
}