CChiraginchiragwrites.hashnode.dev路Jun 23, 2024 路 10 min readOop (c++)OOP Notes Encapsulation Encapsulation in C++ is defined as the wrapping up of data and information in a single unit. In Object Oriented Programming, Encapsulation is defined as binding together the data and the functions that manipulate them. ...00
CChiraginchiragwrites.hashnode.dev路Jan 29, 2024 路 2 min readSteps for using Redux Toolkit馃捇A "slice" is a collection of Redux reducer logic and actions for a single feature in your app, typically defined together in a single file createSlice() function 鈫扐 function that accepts an initial state, an object of reducer functions, and a "slice...00
CChiraginchiragwrites.hashnode.dev路Oct 11, 2023 路 2 min readDay 2 :Creating Our Own React Library and JSXSo React uses its parallel dom in which it injects the HTML elements and renders the page so for that, we need to know how React converts an HTML element (back of the scene) also, we need a render function to merge the dom element in the main conta...00
CChiraginchiragwrites.hashnode.dev路Oct 9, 2023 路 2 min readDay 1 : React BasicsMethods of Creating and Running a Project With Framework( Next.js) npx create-react-app Project_Name npm run start Without Framework( through Bundler Like Vite etc) npm create vite@latest npm install npm run dev What's inside the App.js a...00