React Portfolio Project -
✅I made a cool portfolio project in December, and now I want to share it with you guys !
Check it out The live preview here 👇 ||
Live preview : https://t.co/prb1jHZI9W
Code here on Github 👇 ||
Github :https://t.co/HwrVBjQTrn
#reactjs
Hey Guys just created a Strong Password Generator in React js.
Hooks Used :
useState()
useEffect()
useCallback()
useRef()
Live Preview : https://t.co/BUN8Vs1YX0
Dm for Source Code .
#Productivity#projects#React
Sora-OpenAI text-to-video model that creates min long insanely magical scenes
Chair Archeology.
Prompt: Archeologists discover a generic plastic chair in the desert, excavating and dusting it with great care.
#soraArt#OpenAI
Sora steps into the spotlight !
Sora developed by OpenAI, is an impressive text-to-video model.
Here is the video of Italian pup which is 100% generated by Sora
#Sora#OpenAI
Redux Store :-
A Redux store is a state container which holds the application’s state
1)one store for the entire application
2)Allow access to state via getState()
3)Allows state to be updated via dispatch(action)
#reactjs
Reducers in Redux -
1)Specify how the apps state changes in response to actions sent to the store.
2)Function that accepts state and action as arguments, and return the next state of the application
(previousState , action ) => newState
#reactjs#webdevelopment
Actions in Redux -
✅The only way application can interact with the
store.
✅Carry some information from the app to redux
store in plain JS objects
✅It's like method, in which you can update the state
#reactjs#webdevelopment#FrontEnd
Three Principles of Redux -
1)The global state of application is stored as an object inside a single store
2)The only way to change the state is to dispatch an action, object that describe what happened
3)How the state tree is updated based on actions, you write pure reducers
Three Principles of Redux -
1)The global state of application is stored as an object inside a single store
2)The only way to change the state is to dispatch an action, object that describe what happened
3)How the state tree is updated based on actions, you write pure reducers
Learn Redux Core Concepts in Simple Way
Three Core Concepts:
1)Store:
In Redux the store holds the state of your application.
2)Action:
Describes what happened in the application.
3)Reducer:
Reducer handles the action and decides how to update the state.
#reactjs#webdev
@TechTinkerZaid Oh , okay I thought it was something else. By the way, I'm using Vite instead of Parcel due to various reasons, such as native ESM support and fast development.