Files
nextfire-app/pages/index.js
2022-05-03 02:53:19 -07:00

12 lines
207 B
JavaScript

import Head from 'next/head'
import Image from 'next/image'
import styles from '../styles/Home.module.css'
export default function Home() {
return (
<div>
<h1>Hello world!</h1>
</div>
)
}