export default function App(){ function handleEvent(e){ console.log("handleEvent Click"); e.preventDefault(); } function parent(e){ console.log("parent: " + e); } function child(e){ console.log("child: " + e); e.stopPropagation(); //부모의 버블링 방지 } return( submit parent child ) }