Results for the following term searched: react
More Stories
Nested routes with react router v4 / v5
# š Easy peasy way to nest routes in React Router v4/v5 So you're working on a React app, and you want to organize your routes by nesting them. You've checked out the React Router v4 documentation, but you can't seem to get it working the way you want. D
How can I communicate between related react components?
# How to Communicate Between Related React Components? š£ļø So, you're diving into the amazing world of ReactJS and you've encountered a common challenge - how do you make related components interact with each other?! š± Fear not, my fellow React enthusia
React this.setState is not a function
# Fixing the "this.setState is not a function" error in React If you're working with React and have encountered the error "TypeError: this.setState is not a function", you're not alone! This common issue often occurs when there is a problem with the bindi
How do you test for the non-existence of an element using jest and react-testing-library?
# āØ Testing the Non-Existence of an Element in React with Jest and react-testing-library āØ So you're writing unit tests for your component library using Jest and react-testing-library. š©āš» Fantastic! But wait, there's a little challenge you've encounter
react-router - pass props to handler component
# How to Pass Props to a Handler Component in React Router Are you stuck trying to pass props to a handler component in React Router? š¤ Don't worry, you're not alone! Many developers struggle with this common issue. In this blog post, we will explore dif
How to compare oldValues and newValues on React Hooks useEffect?
## How to Compare oldValues and newValues on React Hooks useEffect? š¤ Have you ever wondered if there's a way to compare `oldValues` and `newValues` in `useEffect` on React Hooks, just like in the good old `componentDidUpdate` days? š Well, you're in
How to use `setState` callback on react hooks
# How to Use `setState` Callback on React Hooks š”šš£ React hooks have revolutionized the way we manage state in functional components. The introduction of the `useState` hook allows us to easily set and update our component's state. However, if you're c
Programmatically navigate using react router V4
# Programmatically navigate using React Router V4: A Complete Guide š React Router is a popular routing library for React applications, providing a way to navigate between different pages or URL endpoints. In version 4 of React Router, there are some cha
When to use ES6 class based React components vs. functional ES6 React components?
# When to use ES6 class based React components vs. functional ES6 React components? <p>React offers two main paradigms for creating components: ES6 class based components and functional ES6 components. Understanding when to use each one is key to writing
How to pass params with history.push/Link/Redirect in react-router v4?
## š How to Pass Params with history.push/Link/Redirect in React-Router v4? Are you struggling to pass parameters with `history.push`, `Link`, or `Redirect` in React-Router v4? Don't worry, you're not alone! Many developers face this issue when working