tronair-gui
Version:
Web application/GUI for performing airdrops on the TRON blockchain
28 lines (21 loc) • 624 B
JavaScript
import DataSheetBase from './DataSheetBase.js';
export default class DataSheet_recipients extends DataSheetBase {
constructor(id, updateCb) {
super(id, updateCb);
this.requestedKeyPath = ""; // this value can be specified in the React Studio data sheet UI
}
makeDefaultItems() {
// eslint-disable-next-line no-unused-vars
let key = 1;
// eslint-disable-next-line no-unused-vars
let item;
item = {};
this.items.push(item);
item['column1'] = "AND";
item.key = key++;
item = {};
this.items.push(item);
item['column1'] = "OR";
item.key = key++;
}
}