webdev/react

react

dz / webdev / react

Summary

Things related to react

Node Tree

Nodes

quickstart
content react quickstart
children webdev/export_js (referenced in the quickstart guide wanted to better understand,what was meant by "export default".)
hyperlink https://react.dev/learn
tags react

reference
content react reference
hyperlink https://react.dev/reference/react
tags react

reactive_programming_wikipedia
content reactive programming wikipedia page
remarks I'm *pretty* sure this is related to React
hyperlink https://en.wikipedia.org/wiki/Reactive_programming
tags reactive

nextjs_wikipedia
content NextJS wikipedia page
hyperlink https://en.wikipedia.org/wiki/Next.js
tags react, nextjs

component
content component: piece of re-usable code that represents a part of a user interface
children use_state (called from a component)
tags glossary, react

JSX_element
content JSX Element: Combination of JS code and HTML tags that describe what you want to display.

use_state
content useState: special function React uses that you can call from a component to let it "remember" things.
children usestate_ref
parents component
tags react

tic_tac_toe
content tic-tac-toe tutorial
parents webdev/spread_syntax
hyperlink https://react.dev/learn/tutorial-tic-tac-toe
tags react, tutorials

key_property
content key property: special and reserved property in React. used to decide which elements to update.
tags react

thinking_in_react
content Thinking In React
children webdev/single_responsibility_principle (found "Single Responsibility Principle" whiled reading "Thinking In React"), state_components_memory (referenced), usestate_ref (referenced when talking about useState "Hooks"), passing_props_component (referenced), webdev/class_selectors (found while reading thinking in react, wasn't 100% clear on terminology), your_first_component (referenced)
hyperlink https://react.dev/learn/thinking-in-react
tags react

state_components_memory
content State: A Components Memory
parents thinking_in_react
hyperlink https://react.dev/learn/state-a-components-memory

your_first_component
content Your First Component
parents thinking_in_react
hyperlink https://react.dev/learn/your-first-component

passing_props_component
content Passing Props to a Component
parents thinking_in_react
hyperlink https://react.dev/learn/passing-props-to-a-component

usestate_ref
content useState reference
parents use_state, thinking_in_react
hyperlink https://react.dev/reference/react/useState

soapnotescribe_audiorecorder
content soapnotescribe: audio recorder
remarks JM's project, mentioned this code in zulip chat
hyperlink https://github.com/josephrmartinez/soapnotescribe/blob/main/app/components/AudioRecorder.tsx

lua_react
content React in Lua
hyperlink https://github.com/jsdotlua/react-lua
tags react, lua

react_as_ui_runtime
remarks DF recommended this to me as a kind of deep dive
hyperlink https://overreacted.io/react-as-a-ui-runtime/ln
tags react