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