# Striking Event Centre

* Add your unique operator ID.
* Set your targetModule: "striking" (case sensitive).
* Enter the eventId, note to use the unique ID for the fightcard
* Find the unique fightID that you would like to navigate to when the event centre is initially rendered, e.g. 7121
* Add the initialContext which consists of "view" & "fightId"
  * 'View' must be: "striking" to render the fightcard in striking view
  * 'fightId' of a given fight.

Sample Code:

```javascript
const { MessageTopics } = frontRowSeat.eventCentreUtils;
const eventCentreInstance = frontRowSeat.eventCentre({
        operator: "operatorIDName",
        sport: "mma",
        targetModule: "striking",
        eventId: "eventID",
        version: "version number",
        targetElementSelector: "#img-arena-event-centre",
        language: "en",
        initialContext: {
          view: "striking",
          fightId: "fightID"
        }
      });
```

{% embed url="<https://codepen.io/wjadoon/pen/ZYQNjrJ>" %}
