mirror of
https://github.com/rxliuli/apps.apple.com.git
synced 2025-11-09 20:00:34 +00:00
6 lines
205 B
TypeScript
6 lines
205 B
TypeScript
export function focusNodeOnMount(node: HTMLElement) {
|
|
// Wrapping in queueMicrotask ensures the node is attached to the
|
|
// DOM before attempting to focus.
|
|
queueMicrotask(() => node.focus());
|
|
}
|