const removeTicket = (tickets, id) => {
  const ticket = tickets.find(tick => tick.id === id);
  const index = tickets.indexOf(ticket);

  return [