redux-cube's pluggable module for react-i18next
npm install --save redux-cube-with-i18next
With webcube:
import React from 'react';
import withI18next from 'redux-cube-with-i18next';
import i18nResources from 'config/locales';
import cube from './cube';
function App() {
return (
<div/>
);
}
export default App
|> cube.createApp({
plugins: [withI18next],
i18nextConfig: {
resources: i18nResources,
},
});
Without webcube:
WIP