reading-notes

These are my reading notes for Code Fellows


Project maintained by taegorov Hosted on GitHub Pages — Theme by mattgraham

Home

Reading Notes Code 301: Day 1

[
  'X', null, 'X',
  'null', 'O', 'O',
  'X', null, null,
]

In React, it’s conventional to use on[Event] names for props which represent events and handle[Event] for the methods which handle the events.

-(source for quote here)

const hello = <h1>hello!</h1>