JSFiddle - React, Tailwind, and code Playground

by mattoconnell408

JavaScript

const callback = function(cb) {
  return function() {
  	console.log(321);
  },
  callback();
}