Skip to content

Instantly share code, notes, and snippets.

View sushilburagute's full-sized avatar

Sushil Buragute sushilburagute

View GitHub Profile
@sushilburagute
sushilburagute / React.md
Created June 24, 2020 01:43 — forked from taniarascia/React.md
React notes

React Notes

  • A React component can only return one parent element.
return <h1>Hello</h1><p>World</p>            // error
return <div><h1>Hello</h1><p>World</p></div> // okay 
  • JavaScript expressions can be interpolated in JSX with {}