-
Notifications
You must be signed in to change notification settings - Fork 0
/
component---src-pages-sandbox-index-js-91d32c380aa5e3175f0b.js.map
1 lines (1 loc) · 1.63 KB
/
component---src-pages-sandbox-index-js-91d32c380aa5e3175f0b.js.map
1
{"version":3,"sources":["webpack:///./src/pages/sandbox/index.js"],"names":["Sandbox","sandboxChildren","data","sitemapJson","sitemapGroups","find","g","name","links","filter","l","url","className","map","child","childIndex","key","to"],"mappings":"4FAAA,oEA0CeA,UApCC,SAAC,GAAc,IACvBC,EADsB,EAAXC,KACYC,YAAYC,cAAcC,MAAK,SAAAC,GAAC,MAAe,YAAXA,EAAEC,QAAoBC,MAAMC,QAAO,SAAAC,GAAC,MAAc,aAAVA,EAAEC,OAE3G,OACE,oCACE,kBAAC,IAAD,MACA,kBAAC,IAAD,KACE,uCACA,8EAGA,wBAAIC,UAAU,gBACXX,EAAgBY,KAAI,SAACC,EAAOC,GAAR,OACnB,wBAAIC,IAAKD,GAAY,kBAAC,OAAD,CAAME,GAAIH,EAAMH,KAAMG,EAAMP","file":"component---src-pages-sandbox-index-js-91d32c380aa5e3175f0b.js","sourcesContent":["import React from 'react'\nimport { graphql, Link } from 'gatsby'\n\nimport SEO from '../../components/seo'\nimport Layout from '../../components/layout'\n\nconst Sandbox = ({ data }) => {\n const sandboxChildren = data.sitemapJson.sitemapGroups.find(g => g.name === 'Sandbox').links.filter(l => l.url !== '/sandbox')\n\n return (\n <>\n <SEO />\n <Layout>\n <h1>Sandbox</h1>\n <p>\n Tinkering with Gatsby, and testing other stuff.\n </p>\n <ul className=\"margin-top-0\">\n {sandboxChildren.map((child, childIndex) => (\n <li key={childIndex}><Link to={child.url}>{child.name}</Link></li>\n ))}\n </ul>\n </Layout>\n </>\n )\n}\n\nexport const query = graphql`\n query {\n sitemapJson {\n updated_at(formatString: \"DD MMMM YYYY\")\n sitemapGroups {\n name\n links {\n name\n url\n }\n }\n }\n }\n`\n\nexport default Sandbox"],"sourceRoot":""}