Skip to content

Latest commit

 

History

History

redux-cube-with-i18next

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

redux-cube-with-i18next

< Back to Project WebCube

NPM Version

Nodei

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