mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-01 20:40:17 +00:00
Create a new component that uses Dialog. Reuse existing actions for updating a participant's display name.
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);
|
|
}
|