{"version":3,"file":"static/js/33.d4aa988d.chunk.js","mappings":"wPAWMA,EAAAA,SAAAA,IAAAA,EAAAA,EAAAA,GAAAA,EAAAA,GAAAA,IAAAA,GAAAA,EAAAA,EAAAA,GAAAA,GAAAA,SAAAA,IAAAA,OAAAA,EAAAA,EAAAA,GAAAA,KAAAA,GAAAA,EAAAA,MAAAA,KAAAA,UAAAA,CASH,OATGA,EAAAA,EAAAA,GAAAA,EAAAA,CAAAA,CAAAA,IAAAA,oBAAAA,MACJ,WACEC,KAAKC,MAAMC,SACXC,SAASC,MAAQ,kBAClB,uBAED,WACE,IAAQC,EAAaL,KAAKC,MAAlBI,SACR,OAAO,SAAC,EAAAC,IAAD,CAAKC,MAAOF,EAAUG,SAAU,cACxC,OATGT,CAAqBU,EAAAA,WAY3B,WAAeC,EAAAA,EAAAA,KACb,WAAyBC,GAAzB,IAAGN,EAAH,EAAGA,SAAH,eAAC,UACIM,GADL,IAEEN,SAAAA,GAFF,IAIA,SAAAO,GAAQ,OACNC,EAAAA,EAAAA,KAAmB,UAEZC,EAAAA,GAELF,EALI,GALV,CAYEb,E","sources":["containers/FaqContainer.tsx"],"sourcesContent":["import { Faq, IFaqArea } from \"@lexdania/components\";\r\nimport React from \"react\";\r\nimport { connect } from \"react-redux\";\r\nimport { AppState } from \"store\";\r\nimport { bindActionCreators } from \"redux\";\r\nimport { FaqActions, IFaqActions } from \"./../store/faq/faqReducer\";\r\n\r\ninterface IFaqContainerProps extends IFaqActions {\r\n  faqAreas: IFaqArea[];\r\n}\r\n\r\nclass FaqContainer extends React.Component<IFaqContainerProps> {\r\n  componentDidMount() {\r\n    this.props.getFaq();\r\n    document.title = \"Lovtidende | FAQ\";\r\n  }\r\n\r\n  public render() {\r\n    const { faqAreas } = this.props;\r\n    return <Faq areas={faqAreas} siteName={\"Lovtidende\"} />;\r\n  }\r\n}\r\n\r\nexport default connect(\r\n  ({ faqAreas }: AppState, ownProps: IFaqContainerProps): IFaqContainerProps => ({\r\n    ...ownProps,\r\n    faqAreas,\r\n  }),\r\n  dispatch =>\r\n    bindActionCreators(\r\n      {\r\n        ...FaqActions,\r\n      },\r\n      dispatch\r\n    )\r\n)(FaqContainer);\r\n"],"names":["FaqContainer","this","props","getFaq","document","title","faqAreas","Faq","areas","siteName","React","connect","ownProps","dispatch","bindActionCreators","FaqActions"],"sourceRoot":""}