JSFiddle - React, Tailwind, and code Playground

by Lloyd Atkinson

Babel + JSX

class SomeClass {
	constructor () {
    	this.counter = 0;
    }
    
    increment () {
    	this.counter = counter + 1;
    }
};

const someClosure = () => {
	let counter	= 0;
    
    
};