{"version":3,"file":"198.4486512f03a2e57e.js","mappings":"+JAEA,MA8CA,EA9CwBA,EAAGC,QAAOC,QAAOC,YAAWC,QAAOC,aAAYC,iBAAgBC,gBAAeC,cAAaC,eAE/GC,EAAAA,cAAA,OAAKC,GAAIT,EAAOU,UAA2B,SAAhBJ,EAAyB,4BAA8B,8BAC9EE,EAAAA,cAAA,OAAKE,UAAU,OACVX,GACGS,EAAAA,cAACG,EAAAA,SAAQ,KACLH,EAAAA,cAAA,OAAKE,UAAU,kDACXF,EAAAA,cAAA,OAAKE,UAAU,SACXF,EAAAA,cAAA,OAAKI,IAAKb,OAK1BS,EAAAA,cAAA,OAAKE,UAAWX,EAAMc,OAAS,EAAI,gDAAkD,+DAE7EZ,EACAO,EAAAA,cAAA,UAAKP,GAEL,GAEU,QAAbM,EACDC,EAAAA,cAAA,UAAKN,GAELM,EAAAA,cAAA,UAAKN,GAELM,EAAAA,cAAA,OAAKE,UAAU,mBAAmBI,wBAAyB,CAAEC,OAAQZ,KACpEE,GAAiD,IAAhCW,IAAAX,GAAaY,KAAbZ,GAAqBQ,QAAgBT,GAAmD,IAAjCY,IAAAZ,GAAca,KAAdb,GAAsBS,QAC3FL,EAAAA,cAAA,KAAGE,UAAU,gDAAgDQ,KAAMb,GAAgBD,MCvBvG,MAAMe,UAAiCC,EAAAA,UACnCC,WAAAA,CAAYC,GACRC,MAAMD,EACV,CAEAE,MAAAA,GACI,OACIhB,EAAAA,cAACV,EAAoB2B,KAAKH,MAElC,EAGJ,MAUA,GAAeI,EAAAA,EAAAA,KAVSC,IACb,CAAC,KAGeC,IAChB,CAEP,IAGJ,CAA4DT,E","sources":["webpack:///./Scripts/Components/ImageAndContent.js","webpack:///./Scripts/Containers/ImageAndContent.container.js"],"sourcesContent":["import React, { Fragment } from 'react';\n\nconst ImageAndContent = ({ image, color, topheader, title, longertext, linkheadertext, linkheaderurl, isimageleft, mainblock }) =>\n\n    <div id={color} className={isimageleft === \"True\" ? \"image-left blocktextimage\" : \"image-right blocktextimage\"} >\n        <div className=\"row\">\n            {image &&\n                <Fragment>\n                    <div className=\"columns large-5 small-12 blocktextimage__image\">\n                        <div className=\"image\">\n                            <img src={image} />\n                        </div>\n                    </div>\n                </Fragment>\n            }\n            <div className={image.length > 0 ? \"columns small-12 large-7 blocktextimage__text\" : \"columns small-12 large-12 blocktextimage__text padding-l-15\"} >\n                {\n                    topheader ?\n                    <h2>{topheader}</h2>\n                    :\n                    \"\"\n                }\n                {mainblock == \"True\" ?\n                <h1>{title}</h1>\n                :\n                <h3>{title}</h3>\n                }\n                <div className=\"block-image-text\" dangerouslySetInnerHTML={{ __html: longertext }} ></div>\n                {linkheaderurl && linkheaderurl.trim().length !== 0 && linkheadertext && linkheadertext.trim().length !== 0 &&\n                    <a className=\"blocktextimage__text--link button button--big\" href={linkheaderurl}>{linkheadertext}</a>\n                }\n            </div>\n        </div>\n\n        {/* <img src={image} />  <br />\n       Title : {title}\n            <br />\n            color:{color}\n            <br />\n            topheader:<span>{topheader}</span>\n            <br />\n            longerText :<div  dangerouslySetInnerHTML={{__html:longertext}} ></div>\n            linkheadertext{linkheadertext}<br />\n            linkheaderurl :{linkheaderurl}<br />\n            IsimageLeft? {isimageleft} */}\n\n    </div >\n\nexport default ImageAndContent;\n","import React, { Component } from 'react';\nimport { connect } from 'react-redux';\n\nimport ImageAndContent from '../Components/ImageAndContent';\n\n\nclass ImageAndContentContainer extends Component {\n    constructor(props) {\n        super(props);\n    }\n\n    render() {\n        return (\n            <ImageAndContent {...this.props} />\n        );\n    }\n}\n\nconst mapStateToProps = state => {\n    return {}\n}\n\nconst mapDispatchToProps = dispatch => {\n    return {\n\n    }\n}\n\nexport default connect(mapStateToProps, mapDispatchToProps)(ImageAndContentContainer);"],"names":["ImageAndContent","image","color","topheader","title","longertext","linkheadertext","linkheaderurl","isimageleft","mainblock","React","id","className","Fragment","src","length","dangerouslySetInnerHTML","__html","_trimInstanceProperty","call","href","ImageAndContentContainer","Component","constructor","props","super","render","this","connect","state","dispatch"],"sourceRoot":""}