explooosion / poe-hideout-sharing

Path Of Exile Hideout Sharing Website.
https://poe-hideout.firebaseapp.com
MIT License
6 stars 0 forks source link

Update i18n #9

Closed explooosion closed 5 years ago

explooosion commented 5 years ago
explooosion commented 5 years ago

ref: https://react.i18next.com/guides/quick-start

import React from 'react';

// the hoc
import { withTranslation } from 'react-i18next';

function MyComponent ({ t }) {
  return <h1>{t('Welcome to React')}</h1>
}

export default withTranslation()(MyComponent);