Subscribe to my newsletter and never miss my upcoming articles
🌟 Create a React application via: npx create-react-app your-app-name 🌟 Inside your application's folder run this commands in terminal: npm i -D tailwindcss@latest postcss@latest autoprefixer@latest postcss-cli@latest npx tailwind init tailwind.js ...
This are excerpts (partial) of three blogs you can find the links at the bottom The path of the self-taught developer is tough and filled with uncertainty. There is no straight line from newbie to career programmer. Because of this, I believe all sel...
NB: Most Tutorials Length and time of upload is indicated 🌟 Redux For Beginners - React Redux Tutorial - By Dev Ed (Time - 39 min) Very Recent Tutorials 🌟 Learn React #12: Redux & React Intro - Redux Crash Course (Vote Counter App) 🌟 The Net Ninja...
In this article you will learn how to handle events in react. This is a pre-requisite to know how to manage react states. We have a component called Car: const Car = ({brand, year}) => { return( <> <p>The {brand} vehicle brand was first m...
This article will pick up from this code. Children props are used to output whatever is passed between what is passed between the opening and closing tags of our custom component. Here a simple sentence is added to the second place where the car comp...
Reusing Components is quite easy for a beginner but using props i.e configuring props it can prove to be quite a headache. That's why I came up with this article to make your learning easier. As attributes are to HTML elements so are props to compone...