UNPKG

gatsby-theme-zh

Version:
17 lines (16 loc) 368 B
/** * SEO component that queries for data with * Gatsby's useStaticQuery React hook * * See: https://www.gatsbyjs.org/docs/use-static-query/ */ import React from 'react'; interface SEOProps { description?: string; lang?: string; meta?: any[]; title?: string; titleSuffix?: string; } declare const SEO: React.FC<SEOProps>; export default SEO;