We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62371bf commit c1b8bd9Copy full SHA for c1b8bd9
1 file changed
hellopiu-coloredsquares/src/embeddedjs/main.js
@@ -12,9 +12,9 @@ const Square = Content.template($ => ({
12
}));
13
14
const blackSquare = new Square("black", { left: 20, top: 20 });
15
-const whiteSquare = new Square("white");
16
-const graySquare = new Square("black", { right: 20, bottom: 20 });
+const graySquare = new Square("gray");
+const anotherBlackSquare = new Square("black", { right: 20, bottom: 20 });
17
18
application.add(blackSquare);
19
-application.add(whiteSquare);
20
application.add(graySquare);
+application.add(anotherBlackSquare);
0 commit comments