Crispin Kalarickalcaptain-kentucky.hashnode.dev·Aug 30, 2024Lightning-Fast React Setup 2024: How to Build a React App with esbuild in MinutesIntroduction In the fast-paced world of web development, efficiency and speed are crucial. React, one of the most popular JavaScript libraries for building user interfaces, has empowered developers to create dynamic and responsive web applications. H...Discuss·28 readsReact
Abhishek Sharmaabhisheksharmacodes.hashnode.dev·Aug 23, 2024TypeScript's Interfaces and Classes for Type SafetyTypeScript, a superset of JavaScript, has gained immense popularity due to its ability to enhance code quality and maintainability through static type checking. Interfaces and classes play a crucial role in achieving this type safety. Let's delve int...Discussabhisheksharma
Oluwatoyin Faniyantheedon.hashnode.dev·Jan 28, 2024Why you can't use For Loops in JSXJavaScript XML (JSX) is a syntax extension that allows for developers to write components and elements in a similar way to HTML inside of JavaScript, the elements are very similar to HTML and they can easily be converted to JavaScript. The example be...Discuss·1 like·26 readsJSX
Aresfibbonachos.hashnode.dev·Oct 12, 2023TypeScript with ReactTypeScript is a statically typed superset of JavaScript that adds optional static typing, classes, and interfaces to the language. It's developed and maintained by Microsoft. React, on the other hand, is a JavaScript library for building user interfa...Vineet Bhasin and 1 other are discussing this2 people are discussing thisDiscuss·31 likes·112 readsReacthooks got me f'd up honestly 😶🌫️ 10
Abhishek Dhapareabhishekdhapare.hashnode.dev·Apr 11, 2023JSX vs. TSX: Choosing the Right Syntax for Your React AppReact is a popular JavaScript library for building user interfaces. It allows developers to write reusable UI components in JavaScript and provides a virtual DOM for efficient rendering. In addition, React uses a syntax extension called JSX to write ...Discuss·6 likes·10.5K readsJSX
Jennifer Okaforjen.hashnode.dev·Aug 28, 2022How to Pass Data from Child to Parent Component in React (JavaScript and TypeScript Examples)There are many approaches to passing data from a child component to their parent in React. But in this article, we’ll use a combination of useState and props arguments. If you have many nested children in a tree-like structure which may or may not ne...Discuss·139 readsReact