let counter = 0 export function generateId(prefix: string) { counter += 1 return `${prefix}-${Date.now()}-${counter}` }