Skip to content

Instantly share code, notes, and snippets.

@cvcodes
cvcodes / images.js
Last active July 8, 2018 05:09
For Sololearn QnA solution used
class Component {
constructor(height, width, url, left, top, id) {
this.width = width;
this.height = height;
this.url = url;
this.left = left;
this.top = top;
this.id = id;
}
render() {