I hereby claim:
- I am KaraAJC on github.
- I am karaajc (https://keybase.io/karaajc) on keybase.
- I have a public key whose fingerprint is AEDF 15FE 2338 9793 9EEB F590 A019 38E4 A459 DA14
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<!-- progress --> | |
<progress></progress> | |
<!-- code --> | |
<code> </code> | |
<!-- --> |
// examples will go here! | |
// Examples to explore: declaration vs execution | |
// memory management and call stack | |
// scope & context |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>MyFirstWebpage</title> | |
</head> | |
<body> | |
<!-- Example of Javascript element manipulation --> | |
<h1 id="heading-1"></h1> |
##Preview
Simple Dashing widget that displays all currently open pull requests across a GitHub organization.
##Usage
Components are an integral part of react. Every part or a react app, from an individual list item, to the app itself is setup as a component. there are a few ways to think about the structure of a component, and your major choices are: Class Component, or Function Component. React Docs on Components and Props
the render function is made to determine what should be rendered to the dom, when the component is used. you should use a return block to set what will be returned from running render. This function is a requirement of a Component.