translate.ts 469 B

1234567891011
  1. // Copyright 2017-2020 @polkadot/react-signer authors & contributors
  2. // This software may be modified and distributed under the terms
  3. // of the Apache-2.0 license. See the LICENSE file for details.
  4. import { useTranslation as useTranslationBase, UseTranslationResponse, withTranslation } from 'react-i18next';
  5. export function useTranslation (): UseTranslationResponse {
  6. return useTranslationBase('react-signer');
  7. }
  8. export default withTranslation(['react-signer']);