-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomponent---src-templates-testimonial-js-fd6c94e155e97a46411d.js.map
1 lines (1 loc) · 1.68 KB
/
component---src-templates-testimonial-js-fd6c94e155e97a46411d.js.map
1
{"version":3,"sources":["webpack:///./src/templates/testimonial.js"],"names":["query","Testimonial","markdownRemark","data","title","frontmatter","html","bodyClass","className","dangerouslySetInnerHTML","__html"],"mappings":"8FAAA,kFA0BaA,EAAK,aAYHC,UAlCK,SAAC,GAAc,IACzBC,EADwB,EAAXC,KACbD,eACFE,EAAQF,EAAeG,YAAYD,MACnCE,EAAOJ,EAAeI,KAC5B,OACE,kBAAC,IAAD,CAAQC,UAAU,oBAChB,yBAAKC,UAAU,oCACb,yBAAKA,UAAU,2BACb,yBAAKA,UAAU,6BACb,yBAAKA,UAAU,mBACb,yBAAKA,UAAU,kCACb,wBAAIA,UAAU,SAASJ,GACvB,yBAAKI,UAAU,UAAUC,wBAAyB,CAAEC,OAAQJ","file":"component---src-templates-testimonial-js-fd6c94e155e97a46411d.js","sourcesContent":["import React from 'react';\nimport { graphql } from 'gatsby';\nimport Layout from '../layouts/index';\n\nconst Testimonial = ({ data }) => {\n const { markdownRemark } = data;\n const title = markdownRemark.frontmatter.title;\n const html = markdownRemark.html;\n return (\n <Layout bodyClass=\"page-testimonial\">\n <div className=\"strip strip-white strip-diagonal\">\n <div className=\"container pt-4 pt-md-10\">\n <div className=\"row justify-content-start\">\n <div className=\"col-12 col-md-8\">\n <div className=\"testimonial testimonial-single\">\n <h1 className=\"title\">{title}</h1>\n <div className=\"content\" dangerouslySetInnerHTML={{ __html: html }} />\n </div>\n </div>\n </div>\n </div>\n </div>\n </Layout>\n );\n};\n\nexport const query = graphql`\n query($id: String!) {\n markdownRemark(id: { eq: $id }) {\n frontmatter {\n title\n path\n }\n html\n }\n }\n`;\n\nexport default Testimonial;\n"],"sourceRoot":""}