import React from 'react'; import { ContrastButton } from 'app/shared/components/contrastButton/contrastButton'; import cx from 'classnames'; import SurveyThumbsUpIcon from '../../../../assets/images/icon-survey-thumbsup.component.svg'; import { getSurveyUrl } from 'app/modules/survey/store/survey.selectors'; import { useSelector } from 'react-redux'; interface Props { isVisible: boolean } const SurveyPopup = ({ isVisible }: Props) => { const surveyUrl = useSelector(getSurveyUrl); return (

Your feedback can help make InSite digital even better for you

Be part of making InSite digital even more useful by rating your experience. It only takes 5 min. Thank you!

Open survey

We evaluate the results monthly to optimize your ability to track every part of your vessel and pool performance via InSite digital.

); }; export { SurveyPopup };