import { useTranslation } from 'react-i18next' import Icon from '../../../shared/components/icon' import * as eventTracking from '../../../infrastructure/event-tracking' import OLTooltip from '@/features/ui/components/ol/ol-tooltip' import BootstrapVersionSwitcher from '@/features/ui/components/bootstrap-5/bootstrap-version-switcher' import MaterialIcon from '@/shared/components/material-icon' function BackToProjectsButton() { const { t } = useTranslation() return (
{ eventTracking.sendMB('navigation-clicked-home') }} > } bs5={ } />
) } export default BackToProjectsButton