Skip to content

Commit c1b8bd9

Browse files
committed
gray square
1 parent 62371bf commit c1b8bd9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • hellopiu-coloredsquares/src/embeddedjs

hellopiu-coloredsquares/src/embeddedjs/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ const Square = Content.template($ => ({
1212
}));
1313

1414
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 });
15+
const graySquare = new Square("gray");
16+
const anotherBlackSquare = new Square("black", { right: 20, bottom: 20 });
1717

1818
application.add(blackSquare);
19-
application.add(whiteSquare);
2019
application.add(graySquare);
20+
application.add(anotherBlackSquare);

0 commit comments

Comments
 (0)