Skip to content

Instantly share code, notes, and snippets.

@staylor
Created October 12, 2018 19:15
Show Gist options
  • Save staylor/77bb3447d73c529213f81a198fb1b660 to your computer and use it in GitHub Desktop.
Save staylor/77bb3447d73c529213f81a198fb1b660 to your computer and use it in GitHub Desktop.
import React from 'react';
export default function HelloPage({ data }) {
const { site: { siteMetadata } } = data;
return (
<article>
<h1>{siteMetadata.title}</h1>
<p>{siteMetadata.description}</p>
</article>
);
}
export const query = graphql`
query HomeQuery {
site {
siteMetadata {
title
description
}
}
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment