JSFiddle - React, Tailwind, and code Playground

by Narendra Vishwakarma

HTML

<div>
  <label>itemsSource Only</label>
  <wj-auto-complete items-source="countries">
  </wj-auto-complete>
</div>
<div>
  <label>itemsSource &amp; cssMatch</label>
  <wj-auto-complete items-source="countries" css-match="highlight">
  </wj-auto-complete>
</div>

CSS

.highlight {
  background-color: #ff0;
  color: #000;
}