vega-frontend-monorepo/libs/wallet/src/use-t.ts
Bartłomiej Głownia c98870f27d
feat(wallet): use i18next (#5299)
Co-authored-by: Matthew Russell <mattrussell36@gmail.com>
2023-11-21 13:48:53 +00:00

4 lines
124 B
TypeScript

import { useTranslation } from 'react-i18next';
export const ns = 'wallet';
export const useT = () => useTranslation(ns).t;