Skip to content

Commit d9e82dc

Browse files
authored
Early App update: Hello World --> 3 boxes (#478)
Boxes!
1 parent 1efb56f commit d9e82dc

File tree

1 file changed

+9
-1
lines changed
  • workspaces/simon-game/src/app/components

1 file changed

+9
-1
lines changed
Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
import React from "react";
22

33
export function App() {
4-
return <div>Hello World!</div>;
4+
return (
5+
<div>
6+
<div
7+
style={{ backgroundColor: "lightblue", height: 100, width: 100 }}
8+
></div>
9+
<div style={{ backgroundColor: "orange", height: 100, width: 100 }}></div>
10+
<div style={{ backgroundColor: "green", height: 100, width: 100 }}></div>
11+
</div>
12+
);
513
}

0 commit comments

Comments
 (0)