core/pages/index.js
2020-08-06 21:53:01 +09:00

12 lines
215 B
JavaScript

import Head from 'next/head'
import styles from '../styles/Home.module.css'
import Layout from '../components/Layout'
export default function Home() {
return (
<Layout>
Hello, World
</Layout>
)
}