import { useTranslation } from "react-i18next"; import { IoIosGlobe } from "react-icons/io"; import { I18nKey } from "#/i18n/declaration"; export function EmptyBrowserMessage() { const { t } = useTranslation(); return (
{t(I18nKey.BROWSER$NO_PAGE_LOADED)}
); }