jiti-meet/react/features/app/functions.web.js

15 lines
232 B
JavaScript
Raw Normal View History

// @flow
export * from './functions.any';
declare var interfaceConfig: Object;
/**
* Returns application name.
*
* @returns {string} The application name.
*/
export function getName() {
return interfaceConfig.APP_NAME;
}