{"version":3,"sources":["components/ReleaseNotes/ReleaseNotes.md","components/ReleaseNotes/index.tsx"],"names":["module","exports","ReleaseNotes","props","state","markdown","fetch","releaseNotes","then","res","text","setState","title","breadcrumbs","to","active","className","source","this","React"],"mappings":"8GAAAA,EAAOC,QAAU,IAA0B,yC,mMCQrCC,E,YACJ,WAAYC,GAAa,IAAD,8BACtB,4CAAMA,KACDC,MAAQ,CAAEC,SAAU,IAFH,E,iFAKI,IAAD,OACzBC,MAAMC,KACHC,MAAK,SAAAC,GAAG,OAAIA,EAAIC,UAChBF,MAAK,SAAAE,GAAI,OAAI,EAAKC,SAAS,CAAEN,SAAUK,S,+BAW1C,OACE,gBAAC,IAAD,KACE,gBAAC,IAAD,CAAQE,MAAM,8BACd,gBAAC,IAAD,CAAaC,YAVG,CAClB,CACEC,GAAI,IACJF,MAAO,QAET,CAAEE,GAAI,gBAAiBF,MAAO,gBAAiBG,QAAQ,MAMrD,2CACA,gBAAC,IAAD,CAAMC,UAAU,QACd,gBAAC,IAAD,CAAUA,UAAU,sBAClB,gBAAC,IAAD,CAAeC,OAAQC,KAAKd,MAAMC,kB,GA3BnBc,aAmCZjB","file":"static/js/19.fbb01437.chunk.js","sourcesContent":["module.exports = __webpack_public_path__ + \"static/media/ReleaseNotes.4ec2a387.md\";","import * as React from \"react\";\nimport Helmet from \"react-helmet\";\nimport ReactMarkdown from \"react-markdown\";\nimport { Card, CardBody, Container } from \"reactstrap\";\nimport Breadcrumbs from \"../Breadcrumbs\";\nimport \"./index.scss\";\nimport releaseNotes from \"./ReleaseNotes.md\";\n\nclass ReleaseNotes extends React.Component<{}, { markdown: string }> {\n constructor(props: any) {\n super(props);\n this.state = { markdown: \"\" };\n }\n\n public componentDidMount() {\n fetch(releaseNotes)\n .then(res => res.text())\n .then(text => this.setState({ markdown: text }));\n }\n\n public render() {\n const breadcrumbs = [\n {\n to: \"/\",\n title: \"Home\"\n },\n { to: \"/releasenotes\", title: \"Release notes\", active: true }\n ];\n return (\n \n \n \n

Release notes

\n \n \n \n \n \n
\n );\n }\n}\n\nexport default ReleaseNotes;\n"],"sourceRoot":""}