sameerkali.hashnode.devResponsive 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...Nov 30, 2023·1 min read
sameerkali.hashnode.devFinding 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...Oct 27, 2023·1 min read
sameerkali.hashnode.devClass 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...Sep 26, 2023·2 min read
sameerkali.hashnode.devHow 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 -fSep 22, 2023·1 min read
sameerkali.hashnode.devCreate 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 LinkedInSep 19, 2023·1 min read