We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1efb56f commit d9e82dcCopy full SHA for d9e82dc
workspaces/simon-game/src/app/components/App.tsx
@@ -1,5 +1,13 @@
1
import React from "react";
2
3
export function App() {
4
- return <div>Hello World!</div>;
+ 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
+ );
13
}
0 commit comments