09-advanced/07-event-map.tsx
Event Map
Example
Official Cake20 View example for event map.
const handlers = {
onClick: () => console.log("click"),
onFocus: () => console.log("focus"),
};
export default () => <button {...handlers}>Event map</button>;