Skip to content

Commit 2f74f05

Browse files
refactor: add lib exports (#712)
1 parent 429aa0e commit 2f74f05

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/containers/AppWithClusters/i18n/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {Lang, i18n} from '../../../utils/i18n';
33
import en from './en.json';
44
import ru from './ru.json';
55

6-
const COMPONENT = 'ydb-internal-user-settings';
6+
const COMPONENT = 'ydb-extended-user-settings';
77

88
i18n.registerKeyset(Lang.En, COMPONENT, en);
99
i18n.registerKeyset(Lang.Ru, COMPONENT, ru);

src/lib.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export {useSetting, useTypedSelector} from './utils/hooks';
1414
export {getMonitoringLink, getMonitoringClusterLink} from './utils/monitoring';
1515
export {i18n, Lang} from './utils/i18n';
1616
export {toaster} from './utils/createToast';
17+
export {cn} from './utils/cn';
1718
export * from './utils/constants';
1819

1920
export {default as reportWebVitals} from './reportWebVitals';
@@ -25,3 +26,4 @@ export type {
2526
SettingsSection,
2627
} from './containers/UserSettings/settings';
2728
export type {SettingProps} from './containers/UserSettings/Setting';
29+
export type {AsideNavigationProps} from './containers/AsideNavigation/AsideNavigation';

0 commit comments

Comments
 (0)