We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cd5de0 commit ab02380Copy full SHA for ab02380
src/containers/App/App.js
@@ -2,6 +2,7 @@ import React from 'react';
2
import {connect} from 'react-redux';
3
import PropTypes from 'prop-types';
4
5
+import {configure as configureUiKit} from '@yandex-cloud/uikit';
6
import {i18n as YDBComponentsI18N} from 'ydb-ui-components';
7
import {i18n, Lang} from '../../utils/i18n';
8
@@ -27,6 +28,9 @@ class App extends React.Component {
27
28
super(props);
29
i18n.setLang(Lang.En);
30
YDBComponentsI18N.setLang(Lang.En);
31
+ configureUiKit({
32
+ lang: Lang.En,
33
+ });
34
}
35
36
componentDidMount() {
0 commit comments