-
Notifications
You must be signed in to change notification settings - Fork 0
/
component---src-pages-404-tsx-5869a50622f512238fe0.js.map
1 lines (1 loc) · 1.5 KB
/
component---src-pages-404-tsx-5869a50622f512238fe0.js.map
1
{"version":3,"file":"component---src-pages-404-tsx-5869a50622f512238fe0.js","mappings":"mJAkCA,IAtBe,SAAC,GAAiC,IAA/BA,EAA+B,EAA/BA,SAChB,OACE,gCACI,+BAGA,wBAAMC,MAAO,CAACC,UAAW,GAAIC,QAAS,KAAMH,GAC5C,0BACEC,MAAO,CACLG,OAAQ,KAGV,qBAAGC,KAAK,KAAR,W,mDCbV,UAPqB,kBACnB,gBAAC,IAAD,KACE,4CACA","sources":["webpack://gatsby-starter-default/./src/components/layout.tsx","webpack://gatsby-starter-default/./src/pages/404.tsx"],"sourcesContent":["/**\n * Layout component that queries for data\n * with Gatsby's useStaticQuery component\n *\n * See: https://www.gatsbyjs.com/docs/use-static-query/\n */\n\nimport * as React from \"react\"\nimport PropTypes from \"prop-types\"\nimport { useStaticQuery, graphql } from \"gatsby\"\nimport \"./layout.css\"\n\nconst Layout = ({ children }:{children: any}) => {\n return (\n <>\n <header>\n\n </header>\n <main style={{marginTop: 16, padding: 24}}>{children}</main>\n <footer\n style={{\n margin: 24,\n }}\n >\n <a href=\"/\">Top</a>\n </footer>\n </>\n )\n}\n\nLayout.propTypes = {\n children: PropTypes.node.isRequired,\n}\n\nexport default Layout\n","import * as React from \"react\"\n\nimport Layout from \"../components/layout\"\n\nconst NotFoundPage = () => (\n <Layout>\n <h1>404: Not Found</h1>\n <p>You just hit a route that doesn't exist... the sadness.</p>\n </Layout>\n)\n\nexport default NotFoundPage\n"],"names":["children","style","marginTop","padding","margin","href"],"sourceRoot":""}