mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 02:56:41 +07:00
12 lines
260 B
JavaScript
12 lines
260 B
JavaScript
// @flow
|
|
export const DIALOGS = ({
|
|
NONE: 'NONE',
|
|
MAP_LIST: 'MAP_LIST',
|
|
APP_INFO: 'APP_INFO',
|
|
}: { [key: String]: String });
|
|
|
|
export const TABS = ({
|
|
mine: 'Мои',
|
|
all: 'Общие',
|
|
// starred: 'Выбранные',
|
|
}: { [key: String]: String });
|