First question from React Course | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

First question from React Course

"React was developed by: - Apple - Facebook - Microsoft - Google" There should be an answer like "N/A", as React was originally developed by Instagram (before Facebook buy them), but then improved and released to the public by Facebook.

26th Jul 2020, 9:07 PM
Aaron Stiebler Carneiro da Silva
Aaron Stiebler Carneiro da Silva - avatar
6 Answers
+ 3
IzeBurg part of the community guidelines states that "Posts may also focus on improving aspects of the platform " So the original question is valid in this section.
27th Jul 2020, 6:09 AM
ifl
ifl - avatar
+ 1
@IzeBurg, so add access to the feed for browser users.
26th Jul 2020, 9:14 PM
Aaron Stiebler Carneiro da Silva
Aaron Stiebler Carneiro da Silva - avatar
+ 1
I'm saying that I'm using the browser and can't see any feed or personal place to post things.
26th Jul 2020, 9:28 PM
Aaron Stiebler Carneiro da Silva
Aaron Stiebler Carneiro da Silva - avatar
+ 1
You can send email to [email protected] for suggestions
26th Jul 2020, 9:53 PM
Gordon
Gordon - avatar
+ 1
Rearrange the code to render the Comment component on the page. Answer: const el = <Comment text="hey" />; ReactDOM.render( el, document.getElementById('root') );
21st Nov 2020, 3:01 PM
Jason Chew
Jason Chew - avatar
0
Fill in the blanks to create a valid component that iterates through the received props array and returns <p> elements for each item. Answer: function MyList(props) { const arr = props.data; const listItems = arr.map ((val) => <p>{val}</p> ); return <div>{listItems}</div>; }
21st Nov 2020, 3:10 PM
Jason Chew
Jason Chew - avatar