I\'m implementing internationalization for a ReactJS webapp. How can I avoid loading all language files?
import ru from \'./ru\'; import en from \'./en\';
Take a look at the react-loadable package - if you can somehow encapsulate your language files into components, this might solve your problem.