JSFiddle - React, Tailwind, and code Playground

by TheDiamondDoge

JavaScript

function loggerHoc(Component) {
  return class extends React.Component {
    render() {
      console.log(this.props);
      return <Component {...this.props}/>
    }
  }
}