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);
|
||
|
}
|