JSFiddle - React, Tailwind, and code Playground

by aliaksej

JavaScript

class SomeCpm() {

	onInit() {
  	this.requestPromise = fetch(url).then(fucntion() {
    	alert(123);
    });
  }


	onDestroy() {
		
  }
}

function sum(a, b) {
	return a + b;
}