JSFiddle - React, Tailwind, and code Playground
HTML
// find out how to mock it
JavaScript
var prom = new Promise(function(resolve, reject) {
resolve({status: 200});
});
prom.then(function(success) {
console.log('res');
}).catch(function(err) {
console.log('err')
}).finally(function(){
console.log('fin')
});