FHFAISAL HUSAINinfaisal004.hashnode.dev·Mar 3, 2024 · 1 min readFix hydration error by this npm packageIf you have worked with or working with Next.js you have definitely came across this hydration error. Fix Method ##1 Simple fix for this error is const [isMounted, setIsMounted] = useState(false); useEffect(() => { setIsMounted(true); }, [...00
FHFAISAL HUSAINinfaisal004.hashnode.dev·Aug 2, 2023 · 2 min readCreating React app without create-react-appLet's build our react app from scratch we'll not use npm create-react-app, but instead, we'll build our app from scratch and see what happens behind when we enter npm create-react-app. So let's start by making a new directory mkdir react-from-scratch...00