Fix meta data in accordance to the docs.

This commit is contained in:
2021-09-13 16:08:47 -04:00
parent d4ccb7a5c8
commit 2dadc9bcfa
5 changed files with 42 additions and 22 deletions

View File

@@ -1,7 +1,7 @@
import Head from 'next/head'
import React, { Fragment } from 'react'
const IndexPage = () => {
const IndexPage = (): JSX.Element => {
return (
<div>
<Head>
@@ -18,4 +18,4 @@ const IndexPage = () => {
)
}
export default IndexPage
export default IndexPage;