import { useTranslation } from 'react-i18next' const SnippetEmptyState = () => { const { t } = useTranslation() return (
{t(($) => $['tabs.noSnippetsFound'], { ns: 'workflow' })}
) } export default SnippetEmptyState