React TypeScript StopPragation

handleClick = (event: any) =>
{
	event.stopPropagation();
}
...
<button onClick={handleClick}></button/
GutoTrosla