/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ import { useCallback } from "react"; import { useSelector } from "react-redux"; import { FeatureHighlight } from "./FeatureHighlight"; function WidgetsRowFeatureHighlight({ handleDismiss, handleBlock, dispatch }) { const { messageData } = useSelector(state => state.Messages); const onDismiss = useCallback(() => { handleDismiss(); handleBlock(); }, [handleDismiss, handleBlock]); return (
{messageData.content.cardTitle ? (

{messageData.content.cardTitle}

) : (

)} {messageData.content.cardMessage ? (

{messageData.content.cardMessage}

) : (

)} {messageData.content.cardCta ? ( ) : ( )}

} dispatch={dispatch} dismissCallback={onDismiss} outsideClickCallback={handleDismiss} /> ); } export { WidgetsRowFeatureHighlight };