Redux & Saga Basic – 2

1.Create a Redux Store: // store.js import { createStore, applyMiddleware, combineReducers } from ‘redux’; import { composeWithDevTools } from ‘redux-devtools-extension’; import thunk from ‘redux-thunk’; //

Reactjs – Type of Props

3- Type of Props : 1.State Variables 2.Functions 3.Components Parent child component Example 1.index.js import React from ‘react’; import ReactDOM from ‘react-dom/client’; import ‘./index.css’; import

Redux Toolkit Basic

Login – ReduxToolkit Example – 1 1.userActionTypes.js export const USER_FETCH_REQUESTED = “USER_FETCH_REQUESTED”; export const LOGIN_SUCCESS = “LOGIN_SUCCESS”; export const LOGIN_FAIL = “LOGIN_FAIL”; // Define other

NextJS Beginners

SSG – Static Site Genereation import React from ‘react’ export const getStaticProps = async() => { cosnt response = await fetch(‘https://jsonplaceholder.typicode.com/users’) const json = await

React , React Native App URLs

azorpay Integration, Accept Payment using Razorpay, Razorpay with MERN STACK https://github.com/meabhisingh/RazorPayTutorial/blob/master/frontend/src/Home.jsx MERN STACK SUPREME – Create a Subscription based video streaming platform udemy-mernstack-app https://github.com/meabhisingh/udemy-mernstack-app/tree/master https://github.com/meabhisingh/udemy-mernstack-server

Redux And ReduxSauce

Reduxsauce is a library that provides concise methods for writing action creators and reducers. These methods allow action types to be mapped explicitly to reducers,

1 2 3 5