JSFiddle - React, Tailwind, and code Playground

by Rishabh Sharma

JavaScript

class A {
	constructor(a) {
  	this.a = a;
  }

	render() {
  	return 'something';
  }
}

console.log(new A('foo'));

class B {
	a = 'foo';
  
  
}