Problem with dynamically created clip typography

dynamicChip() {
    var chips = this.chipList;
    var newChip = chips.map(function (e, i) {
      return '<div class="chip"><div class="chip-label">'+ e +'</div></div>'
    }).join("");
    this.$setState({ newChip })
  }

And what is the issue?

I guess it is about the missing space between the dynamic chips. Think it really is because there is no space in between.

2 Likes