JSFiddle - React, Tailwind, and code Playground

by Richard Ayotte

JavaScript

const f1 = cb => {
	return cb()
}

f2 = () => {
 console.log('hello')
}

f1(f2)