import React from 'react'; import { useTranslation } from 'react-i18next'; interface Props { profile: any; } function ProfilerModal(props: Props) { const { t } = useTranslation(); const { profile: { name, args, result }, } = props; return (