mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-20 02:17:47 +00:00
13 lines
301 B
JavaScript
13 lines
301 B
JavaScript
|
|
import { openDialog } from '../../features/base/dialog';
|
||
|
|
|
||
|
|
import { DisplayNamePrompt } from './components';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Signals to open a dialog with the {@code DisplayNamePrompt} component.
|
||
|
|
*
|
||
|
|
* @returns {Object}
|
||
|
|
*/
|
||
|
|
export function openDisplayNamePrompt() {
|
||
|
|
return openDialog(DisplayNamePrompt);
|
||
|
|
}
|