File size: 263 Bytes
b39afbe
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * Copyright (c) 2023 MERCENARIES.AI PTE. LTD.
 * All rights reserved.
 */

const audioPlayerComponent = function () {
  return {
    playlist: null,
    setPlaylist(playlist) {
      this.playlist = playlist;
    },
  };
};

export { audioPlayerComponent };