How to add a button to each event in fullcalendar v5? I am using listWeek view

Solution
  eventContent: function (args, createElement)
  {
    const text = args.event._def.title + '';
    return {
    html: text
  };
},