@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
15 lines • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.locale = void 0;
let currentLocale = 'en-US';
const locale = {
getLocale() {
return currentLocale;
},
setLocale(newLocale) {
currentLocale = newLocale;
},
};
exports.locale = locale;
Object.freeze(locale);
//# sourceMappingURL=locale.js.map