import { useTranslation } from "react-i18next"; import { Link } from "preact-router"; interface HeaderButtonProps { href: string; Icon: any; translationKey: string; } export function HeaderButton(props: HeaderButtonProps) { const { href, Icon, translationKey } = props; const { t } = useTranslation(); return (
{t(translationKey)}
); }