ARAviram Roismaninaroi.hashnode.dev·Jun 20, 2022 · 3 min readHow we use custom hooks?Since the hooks was first announced it keeps revolving, Part of this growth is the custom hooks. Custom hooks - "are an essential tool that let you add special, unique functionality to your React applications." In our team we constantly looking ...00
ARAviram Roismaninaroi.hashnode.dev·Sep 10, 2021 · 3 min readCode Review #2General Impression : The project is written well, Im not sure if this project is a personal project to learn deeply certain things, or its a project to add to your Portfolio, if so.. You have to add some README.md file and add instruction to run thi...00
ARAviram Roismaninaroi.hashnode.dev·Aug 23, 2021 · 3 min readCode review #1Code review : import React from 'react'; const CartContext = React.createContext({ items: [], totalAmount: 0, addItem: (item) => {}, removeItem: (id) => {} }); export default CartContext; I'd suggest you not to use React context as state m...00