JSFiddle - React, Tailwind, and code Playground

by igalst

JavaScript

import {boundClass} from 'autobind-decorator';

@boundClass
class foo {
  x (y) {
  	return y * 2;
  } 
	render  {
    //..
  }
}

export default foo;