import React from 'react'; import {useIntl} from 'gatsby-plugin-intl'; import * as EXPLORE_COPY from '../../data/copy/explore'; import * as styles from './MapSearchMessage.module.scss'; interface ISearchMessage { isSearchResultsNull: boolean; }; const MapSearchMessage = ({isSearchResultsNull}:ISearchMessage) => { const intl = useIntl(); return (