14 lines
232 B
TypeScript
14 lines
232 B
TypeScript
import React from 'react'
|
|
|
|
import Head from 'next/head'
|
|
import Image from 'next/image'
|
|
import styles from '../styles/Home.module.css'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main>
|
|
<h1>Index.js</h1>
|
|
</main>
|
|
)
|
|
}
|