codegeek π΅π
@dovecancode
Followers
111
Following
463
Media
51
Statuses
564
Junior Front-End Developer. Open to work
Philippines
Joined May 2020
Its been two days now since I gave myself a chance to try #wordpress with @elemntor and oh boy I think I can build something with this combination
0
0
0
I just wrapped up my part in a collaborative project: creating a feedback modal popup using Next.js and Zustand for state management. Zustand simplify the process while keeping the code clean and efficient. Have you used Zustand in your projects?
1
0
0
Flutter is officially dying πͺ¦ There is a new fork of flutter called Flock π https://t.co/2nfT9S06VM PS. Just use React Native π
68
110
810
A constructor() method can only be public. Browsers will throw an Uncaught SyntaxError if you define it as a private class field.
0
0
0
JavaScript executes the constructor method before any other user-defined methods. Therefore, it is the best place to define any code you want to run before other methods in the classβs body. #javascript
1
0
0
Taking a challenge from front end mentor done with the mark up and styling, next make add to cart funtion working
0
0
0
React components should not have any business logic. Their main focus should be: 1. displaying/updating UI. 2. responding to users' interactions. That's it.
25
52
499
3 React core concepts: β’ Components β’ Props β’ State
0
0
0
The goal of the reducer is to calculate the new state based on the current state and on the received action. note to remember that reducers are not allowed to modify the existing state and also any asynchronous logic or other side effects #reactjs #javascript
0
0
1
I just found out this first day of the year that it can simply rename variables or function names in vscode by simply hitting the F2 on the keyboard, so happy with this new skill unlocked π€£ππ #buildinpublic #100DaysOfCode
0
0
2
Hey, @supabase can you add the Philippines π΅π in region options when creating a database? π
0
0
1
3. Whenever a parent component re-renders all its child components will automatically be re-rendered as well.
0
0
1
2. A component instance gets re-rendered whenever there's a change in a context that the component is subscribed to.
1
0
1
In react a component instance only gets re-rendered in 3 different situations:
1
0
0