Fronto Localize
Basic Localization utility
// /path/to/component_name/locale.js;const en =blah: "Blah";const th =blah: "บลา"en th ;
Then in your component file.
// /path/to/component_name/index.jsPureComponent// ...{<div></div>}
By default it will look for the localStorage.getItem('locale')
if that doesn't exist it defaults to en
, however you can specify one like so t('blah', 'th')