SFSameer Faridiinsameerkali.hashnode.dev·Nov 30, 2023 · 1 min readResponsive react templateI made this amazing website in less than 6 hours without copying a single line from anywhere (end to end) it boosted my morale and now I am so much more confident about my web dev skills, I know this is not a dynamic website but it is an assignment a...00
SFSameer Faridiinsameerkali.hashnode.dev·Oct 27, 2023 · 1 min readFinding bugs in fatshelawyers.comPage 01: Home Bug 01: there should be a minimum height of those cards. Page 02: Lawyers Bug 02: This p tag needs to give a margin-top. Page 04: Contact Bug 03: margin-bottom & margin-top do not match. that's all alignment-related bugs. Contact m...00
SFSameer Faridiinsameerkali.hashnode.dev·Sep 26, 2023 · 2 min readClass Component in reactmain diagram whole Blog moving around this link for this diagram class & functional components Passing props state in class (all the states stored in one object like profileClass.js) how to set state class lifecycle constructor render componen...00
SFSameer Faridiinsameerkali.hashnode.dev·Sep 22, 2023 · 1 min readHow to remove Node Modules from GitHub repositorymake .gitignore file. add node_modules/ line to gitignore file Follow those command git rm -r --cached . git add . git commit -m "remove nodeModules files (by sameerkali)" git push -f00
SFSameer Faridiinsameerkali.hashnode.dev·Sep 19, 2023 · 1 min readCreate React app without Vite, CRA, etc.. ( for Interview)Use HTML in Javascript Q: If we have a lot of roots, how can React render then? Ans: React is smart it will overwrite all of these with a render element. Q: How to render more than one element in the root? Ans: let's connect LinkedIn00