JSFiddle - React, Tailwind, and code Playground

by WoJWoJ

TypeScript

class myClass {
  hello(who: string) {
    console.log(`hello ${who}!`)
  }
}

myClass().hello('you')