mirror of
https://github.com/immich-app/immich.git
synced 2026-03-07 17:33:44 -05: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();
|
|
};
|