reading-notes

Reading Notes

View the Project on GitHub simon-panek/reading-notes

Code 401: Class 26 - Component Based UI


Questions

  1. Name 5 JS UI frameworks (other than React)
  1. Difference between a framework and a library?

Vocabulary

Read: Hello World React

Read: Introducing JSX


const element = (
  <div>
    <h1>Hello!</h1>
    <h2>Good to see you here.</h2>
  </div>
);


const element = {
  type: 'h1',
  props: {
    className: 'greeting',
    children: 'Hello, world!',
  }
};

Read: Rendering Elements


const element = <h1>Hello, world</h1>;
ReactDOM.render(element, document.getElementById('root'));

Bookmark: Sass Cheat Sheet

Bookmark: React.js Cheat Sheet

Bookmark: React Cheat Sheet


Return to reading-notes Deployed Site

Return to reading-notes Mark Down