Press n or j to go to the next uncovered block, b, p or k for the previous block.
let globalIdCounter: number = 0; export const getUniqueId = (): string => { globalIdCounter++; return `ux-unique-id-${globalIdCounter}`; };