mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-11 16:52:30 +00:00
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
// @flow
|
|
|
|
/**
|
|
* Custom theme for setting client branding.
|
|
*
|
|
* @param {Object} theme - The ui tokens theme object.
|
|
* @returns {Object}
|
|
*/
|
|
export default function updateTheme(theme: Object) {
|
|
return theme;
|
|
}
|