JSFiddle - React, Tailwind, and code Playground

by Joe Saad

JavaScript

const mClass = () => {
	mMethod = (arg)= {
  	console.log('test 133', arg);
	
  }
}

const t = {
	playMethod: ({mMethod}) => {
  	 mMethod('23');
  }
}


t.playMethod()