-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponent---src-templates-blog-post-js-b84dc952d929669935d8.js.map
1 lines (1 loc) · 2.47 KB
/
component---src-templates-blog-post-js-b84dc952d929669935d8.js.map
1
{"version":3,"sources":["webpack:///component---src-templates-blog-post-js-b84dc952d929669935d8.js","webpack:///./src/templates/blog-post.js"],"names":["webpackJsonp","392","module","exports","__webpack_require__","Glamor","_interopRequireDefault","obj","__esModule","default","query","undefined","_react","_ref","data","post","markdownRemark","createElement","frontmatter","title","dangerouslySetInnerHTML","__html","html","call"],"mappings":"AAAAA,cAAc,iBAERC,IACA,SAAUC,EAAQC,EAASC,IAEJ,SAASC,GAAS,YAS9C,SAASC,GAAuBC,GAAO,MAAOA,IAAOA,EAAIC,WAAaD,GAAQE,QAASF,GAPvFJ,EAAQK,YAAa,EACrBL,EAAQO,MAAQC,MCRjB,IAAAC,GAAAR,EAAA,EDYeE,GAAuBM,EAIrCT,GAAQM,QCdM,SAAAI,GAAc,GAAXC,GAAWD,EAAXC,KACVC,EAAOD,EAAKE,cAClB,OACEX,GAAAY,cAAA,WACEZ,EAAAY,cAAA,UAAKF,EAAKG,YAAYC,OACtBd,EAAAY,cAAA,OAAKG,yBAA2BC,OAAQN,EAAKO,SAKtCZ,8CDqBiBa,KAAKpB,EAASC,EAAoB","file":"component---src-templates-blog-post-js-b84dc952d929669935d8.js","sourcesContent":["webpackJsonp([107818501498521],{\n\n/***/ 392:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(Glamor) {\"use strict\";\n\t\n\texports.__esModule = true;\n\texports.query = undefined;\n\t\n\tvar _react = __webpack_require__(2);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.default = function (_ref) {\n\t var data = _ref.data;\n\t\n\t var post = data.markdownRemark;\n\t return Glamor.createElement(\n\t \"div\",\n\t null,\n\t Glamor.createElement(\n\t \"h1\",\n\t null,\n\t post.frontmatter.title\n\t ),\n\t Glamor.createElement(\"div\", { dangerouslySetInnerHTML: { __html: post.html } })\n\t );\n\t};\n\t\n\tvar query = exports.query = \"** extracted graphql fragment **\";\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(16)))\n\n/***/ })\n\n});\n\n\n// WEBPACK FOOTER //\n// component---src-templates-blog-post-js-b84dc952d929669935d8.js","import React from \"react\";\n\nexport default ({ data }) => {\n const post = data.markdownRemark;\n return (\n <div>\n <h1>{post.frontmatter.title}</h1>\n <div dangerouslySetInnerHTML={{ __html: post.html }} />\n </div>\n );\n};\n\nexport const query = graphql`\n query BlogPostQuery($slug: String!) {\n markdownRemark(fields: { slug: { eq: $slug } }) {\n html\n frontmatter {\n title\n }\n }\n }\n`;\n\n\n// WEBPACK FOOTER //\n// ./src/templates/blog-post.js"],"sourceRoot":""}