import React from 'react'; import { Trans as OriginalTrans, TransProps } from 'react-i18next'; type Props = Omit, 't'>; export const Trans: React.FC = React.memo((props) => { return {props.children}; }); Trans.displayName = 'Trans';