svelte Svelte Custom Stores for React Developers: Part 1 See how to use Custom Stores in Svelte to share application state across compoents. It's not that different than how you do it in React.
react Teaching React to Novices I've been spending time on how we can best prepare students for React by telling a story. That story should result in students needing only to learn new syntax, not new concepts.
react He Was Writing an Exercise About HTML Dialogs When It Suddenly Became Obvious to Take an Enormous Risk and Use Them With a Custom React Hook The result of this journey led to a greater understanding of how to implement custom React hooks, and it inadvertantly led to a better understanding of the built-in `useEffect()` hook to handle what should happen when the component renders.
react React View Switching with Custom Events Any component that needs to switch the view based on user gesture, or other event, can simply dispatch an event with a data payload. The payload is optional, and contains any data the next view may need to do its job.