Thomas G. Lopes
add quota modal
a5619c2
raw
history blame contribute delete
123 Bytes
import { tick } from "svelte";
export function autofocus(node: HTMLElement) {
tick().then(() => {
node.focus();
});
}