JSFiddle - React, Tailwind, and code Playground

by DeadByElpy

JavaScript

var Child = function() {};
var Parent = function() {};

Child.prototype = Object.create(Parent.prototype);
Child.prototype.constructor = Child;