import React from 'react'; import { useTranslation } from 'react-i18next'; import Label from '../Label'; import { Greetings } from './styles'; interface Props { username: string; } const HeaderGreetings: React.FC = ({ username }) => { const { t } = useTranslation(); return ( <> {t('header.greetings')}