JSFiddle - React, Tailwind, and code Playground

by uiwwnw

TypeScript

class EasySelect {
	private _value: [number, string];
  set value(value: [number, string]):void {
  	this._value = value;
  }
  get value():[number, string] {
  	return this._value;
  }
}