Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created September 7, 2020 13:48
Show Gist options
  • Save indreklasn/aaa7d263f0ce992fad357a3fc25ca899 to your computer and use it in GitHub Desktop.
Save indreklasn/aaa7d263f0ce992fad357a3fc25ca899 to your computer and use it in GitHub Desktop.
import React from 'react';
// the translate hook
import { useTranslation } from 'react-i18next';
const MyComponent = () {
const { t, i18n } = useTranslation();
return (
<h1>{t('Welcome to React')}</h1>
)
}
export default MyComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment