JSFiddle - React, Tailwind, and code Playground
JavaScript
class Foo {
data = [];
label = "";
link = "";
value = 0;
chartHeight = 50;
element;
constructor({data, label, link, value} = {}) {
this.data = data;
this.label = label;
this.link = link;
this.value = value;
}
}
const foo1 = new Foo({ label: 'hi'});
console.log(foo1);