redux-cube-with-i18next
v1.2.0
Published
redux-cube's pluggable module for react-i18next
Downloads
19
Maintainers
Readme
redux-cube-with-i18next
redux-cube's pluggable module for react-i18next
npm install --save redux-cube-with-i18next
Get Started
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