- {/* eslint-disable-next-line quotes */}
{"I'm sorry Dave"}
{' '}
- {/* eslint-disable-next-line quotes */}
{"I'm afraid I can't do that"}
Back to homepage
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index d254efdf..dcfbf3e3 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -1,5 +1,5 @@
import React, { ReactElement } from 'react'
-import { graphql, Link } from 'gatsby'
+import { graphql, Link, PageProps } from 'gatsby'
import Page from '../components/templates/Page'
import { Post } from '../@types/Post'
import { Image } from '../components/atoms/Image'
@@ -13,20 +13,9 @@ const page = {
}
}
-export default function Home({
- data,
- location
-}: {
- data: any
- location: Location
-}): ReactElement {
+export default function Home(props: PageProps): ReactElement {
return (
-