-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponent---src-pages-index-js-b4aa3c36761c3c3999bf.js.map
1 lines (1 loc) · 1.47 KB
/
component---src-pages-index-js-b4aa3c36761c3c3999bf.js.map
1
{"version":3,"sources":["webpack:///./src/pages/index.js"],"names":["BlogIndex","render","this","props","data","allMarkdownRemark","edges","location","title","React","Component","pageQuery"],"mappings":"mMAOMA,E,gLACJC,OAAA,WACmBC,KAAKC,MAAdC,KAEWC,kBAAkBC,MAErC,OACE,kBAAC,IAAD,CAAQC,SAAUL,KAAKC,MAAMI,SAAUC,MAJvB,4BAKd,kBAAC,IAAD,CAAKA,MAAM,O,GARKC,IAAMC,WAcfV,YAER,IAAMW,EAAS","file":"component---src-pages-index-js-b4aa3c36761c3c3999bf.js","sourcesContent":["import React from \"react\"\nimport { Link, graphql } from \"gatsby\"\n\nimport Layout from \"../components/layout\"\nimport SEO from \"../components/seo\"\nimport { rhythm } from \"../utils/typography\"\n\nclass BlogIndex extends React.Component {\n render() {\n const { data } = this.props\n const siteTitle = \"Hello, nice to meet you!\"\n const posts = data.allMarkdownRemark.edges\n\n return (\n <Layout location={this.props.location} title={siteTitle}>\n <SEO title=\"\" />\n </Layout>\n )\n }\n}\n\nexport default BlogIndex\n\nexport const pageQuery = graphql`\n query {\n site {\n siteMetadata {\n title\n }\n }\n allMarkdownRemark(sort: { fields: [frontmatter___date], order: DESC }) {\n edges {\n node {\n excerpt\n fields {\n slug\n }\n frontmatter {\n date(formatString: \"MMMM DD, YYYY\")\n title\n description\n }\n }\n }\n }\n }\n`\n"],"sourceRoot":""}