* style: spelling * refact: canvases replaced with konva * refact: area text calculated by words * refact: moved konva files out of test dir
		
			
				
	
	
		
			7 lines
		
	
	
		
			160 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			160 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
const asyncClick = (e: React.MouseEvent, callback: (e: React.MouseEvent) => Promise<void>) => {
 | 
						|
  e.preventDefault()
 | 
						|
  callback(e)
 | 
						|
}
 | 
						|
 | 
						|
export default asyncClick
 |