{"version":3,"sources":["webpack://gatsby-starter-default/./src/pages/press-release/{StrapiPressReleases.strapiId}.js"],"names":["_pressRelease","data","allStrapiPressReleases","edges","map","item","index","_images","node","images","image","key","G","localFile","childImageSharp","gatsbyImageData","alt","style","width","maxHeight","imgStyle","objectFit","className","title","source","content","escapeHtml"],"mappings":"+LAqEA,UA3CqB,SAAC,GAAc,IAG5BA,EAH2B,EAAXC,KACIC,uBAAuBC,MAEdC,KAAI,SAACC,EAAMC,GAC5C,IAAMC,EAAUF,EAAKG,KAAKC,OAAOL,KAAI,SAACM,EAAOJ,GAC3C,OACE,uBAAKK,IAAKL,GACR,gBAAC,EAAAM,EAAD,CACEF,MAAOA,EAAMG,UAAUC,gBAAgBC,gBACvCC,IAAI,GACJC,MAAO,CAAEC,MAAO,OAAQC,UAAW,SACnCC,SAAU,CAAEC,UAAW,eAK/B,OACE,uBAAKV,IAAKL,GACR,uBAAKgB,UAAU,WACb,uBAAKA,UAAU,kBACb,uBAAKA,UAAU,0BACb,uBAAKA,UAAU,0BACb,uBAAKA,UAAU,sBAAsBjB,EAAKG,KAAKe,OAC9ChB,EACD,uBAAKe,UAAU,SACb,gBAAC,IAAD,CAAUE,OAAQnB,EAAKG,KAAKiB,QAASC,YAAY,aAUjE,OACE,gBAAC,KAAD,KACE,uBAAKJ,UAAU,qBACf,gBAAC,KAAD,KAAUtB","file":"component---src-pages-press-release-strapi-press-releases-strapi-id-js-0e8ef20fa2ea7fa0faf8.js","sourcesContent":["import React from 'react';\nimport Markdown from 'react-markdown';\nimport { graphql } from 'gatsby';\nimport { Layout, Section } from 'components';\nimport { GatsbyImage } from 'gatsby-plugin-image';\n\nexport const query = graphql`\n query PressReleasesQuery($strapiId: Int!) {\n allStrapiPressReleases(filter: { strapiId: { eq: $strapiId } }) {\n edges {\n node {\n title\n content\n images {\n localFile {\n childImageSharp {\n gatsbyImageData\n }\n }\n }\n }\n }\n }\n }\n`;\n\nconst PressRelease = ({ data }) => {\n const pressRelease = data.allStrapiPressReleases.edges;\n\n const _pressRelease = pressRelease.map((item, index) => {\n const _images = item.node.images.map((image, index) => {\n return (\n