File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ Localization library for handling translations in [React](https://facebook.githu
2222
2323* Does not require [ Redux] ( https://redux.js.org/ ) , but does provide out of the box support for it.
2424* Built on React's native [ Context] ( https://reactjs.org/docs/context.html ) .
25+ * [ Works with Server Side Rendering] ( https://ryandrewjohnson.github.io/react-localize-redux-docs/#working-with-server-side-rendering ) .
2526* [ Include inline default translations] ( https://ryandrewjohnson.github.io/react-localize-redux-docs/#include-inline-default-translations )
27+ * [ Render React components from translations] ( https://ryandrewjohnson.github.io/react-localize-redux-docs/#react-translations ) .
2628* [ Dynamic translations] ( https://ryandrewjohnson.github.io/react-localize-redux-docs/#dynamic-translations )
2729* [ HTML translations] ( https://ryandrewjohnson.github.io/react-localize-redux-docs/#html-translations )
2830* [ Plus more...] ( https://ryandrewjohnson.github.io/react-localize-redux-docs/#guides )
Original file line number Diff line number Diff line change 11import React from 'react' ;
22import ReactDOMServer from "react-dom/server" ;
3- import Enzyme , { shallow , mount } from 'enzyme' ;
3+ import Enzyme , { shallow } from 'enzyme' ;
44import { createStore , combineReducers } from 'redux' ;
55import Adapter from 'enzyme-adapter-react-16' ;
66import { Map } from 'immutable'
Original file line number Diff line number Diff line change @@ -8,14 +8,11 @@ import {
88 getTranslationsForActiveLanguage ,
99 getTranslationsForSpecificLanguage ,
1010 translationsEqualSelector ,
11- setLanguages ,
1211 getTranslate ,
13- getTranslateSelector ,
1412 defaultTranslateOptions ,
1513 options ,
1614 localizeReducer
1715} from 'localize' ;
18- import { getLocalizedElement } from 'utils' ;
1916import {
2017 INITIALIZE ,
2118 SET_ACTIVE_LANGUAGE ,
You can’t perform that action at this time.
0 commit comments