+ 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.
9 Réponses
+ 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.
+ 1
@IzeBurg, so add access to the feed for browser users.
+ 1
I'm saying that I'm using the browser and can't see any feed or personal place to post things.
+ 1
You can send email to info@sololearn.com for suggestions
+ 1
Rearrange the code to render the Comment component on the page.
Answer:
const el = <Comment text="hey" />; 
ReactDOM.render(
el,
document.getElementById('root')
);
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>;
}







