#webdev
Read more stories on Hashnode
Articles with this tag
#100DaysOfCode Day 08: Basic Hooks useState hook is used to manage the state of a functional component. It returns an array with two values: the...
#100DaysOfCode Day 07: Higher Order Components (HOCs) Learned about the HOCs in react, which is a function that takes a component and returns a new...
#100DaysOfCode Day 06: Building “Rock Paper Scissor” Game So this weekend instead of learning, I thought of building a small project like a game or...
#100DaysOfCode Day 05: Manipulating the DOM with Refs Cont. Learned how we can manipulate the DOM with Refs in react. Using Refs we can create a...
#100DaysOfCode Day 04: Referencing Values with Refs Learned about refs, which is used when we want a component to remember something but you don’t...
#100DaysOfCode Day 03: Render props Learned about React render props, which is a technique to share code or data between components. Render props...