mirror of
https://github.com/immich-app/immich.git
synced 2025-06-03 13:44:16 -04:00
5 lines
131 B
TypeScript
5 lines
131 B
TypeScript
/** Focus the given element when it is mounted. */
|
|
export const initInput = (element: HTMLInputElement) => {
|
|
element.focus();
|
|
};
|