Skip to content

Instantly share code, notes, and snippets.

@canertuzunar
Created April 14, 2021 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save canertuzunar/40d28e39a1c6bf7989acc2db7b3243b7 to your computer and use it in GitHub Desktop.
Save canertuzunar/40d28e39a1c6bf7989acc2db7b3243b7 to your computer and use it in GitHub Desktop.
const data = useStaticQuery(graphql`
query HeaderQuery {
site {
siteMetadata {
title
}
}
}
`)
return (
<header>
<h1>{data.site.siteMetadata.title}</h1>
</header>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment