We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6f791d + a6a7e28 commit 064d860Copy full SHA for 064d860
1 file changed
challenges/week-1.md
@@ -15,4 +15,18 @@ Create a simple React component that displays a greeting.
15
16
## Points
17
- Challenge completed: 15 points
18
-- PR merged: 10 points
+- PR merged: 10 points
19
+
20
21
+-----------------------------------------------------------------------------------------------------------------------------------------------------
22
23
+### Solution by @jaseel0
24
25
+```javascript
26
+import React from 'react';
27
28
+function Greeting({ name }) {
29
+ return <h1>Hello, {name}! Welcome to ReactSphere.</h1>;
30
+}
31
32
+export default Greeting;
0 commit comments