React
Tracking Events
Track events in your React app into Swishjam
Track events
Page views happen automatically! If you’d like track specific events like a user successfully completing an action you can do the following
Import Swishjam into your component
import { swishjam } from '@swishjam/react';
Track an Event
swishjam.event('event name', {
...include your data here
})
Full Code Example
import { swishjam } from '@swishjam/react';
export default function YourComponent({}) {
const clickHandler = (e) => {
swishjam.event('event name', {
...include your data here
})
}
return (
<button onClick={(e) => clickHandler(e)}>
Click This Button
</button>
)
}