What's next after tutorials and building projects? I think that it's making contributions to open source projects. I have no idea how to do it, but I want to and that is motivation enough to figure out how and to actually do it. Follow me as I learn how to do so.
Category: React
Redux….. How, What, Where, Why?
After a few days of being confused with coding with Redux I decided to really try to understand what Redux is and why it's used. Here is my post on what I have learned about Redux so far.
Before React: Learn a few more Javascript Items Part2
Some of the things in React and Redux make more sense when understanding why things are written the way they are.
Before you dive into React learn a few more Javascript items.
Working on react these past few weeks I have to warn you that before you move on to the React make sure you are comfortable working with the following concepts. The reason I am saying this is because I learned this the hard way. I knew Javascript or so I thought. I knew V5 of… Continue reading Before you dive into React learn a few more Javascript items.
Creating a form with React
Let's create a simple form where all it does is take the submission and displays it. Yes it sounds simple but there is a lot going on where it can get confusing. But once you get the basics down then everything else that has to do with a form is just an extension of this.… Continue reading Creating a form with React
Styling a React App
As if working on the functionality of an web application wasn't enough, you are also expected to style it and make it look nice. I had the hardest time figuring out the easiest but also the "appropriate" way of doing so. Searching around the internet I couldn't find something to tell me this is the… Continue reading Styling a React App
Lifecycle of a Component in React
There's a lot going on with a component that we don't realize, but before we get into it we need to discuss a term and that is mounting. You might remember from our initial discussion on React that React works with virtual DOMs that update the real DOM as needed. Mounting is the process of converting… Continue reading Lifecycle of a Component in React
Day 8: What is state, how is different than props?
State in React: Sounds easy in theory but can be a bit complicated to implement. #MomsCanCode #Codergirls #WomenInTech #TechLadies #LearnReact
Day 7: Using Props in React
Read about how to Use Props in React. Follow along as we make our data dynamic with props.
Day 6: What Makes React Interactive.
It's not good practice to have a powerful tool like React and not take advantage of of it's power. In our Twitter Timeline that we created yesterday we hard coded all the information in ourselves, which defeats the purpose of using React, we could've done the same thing much faster with simple HTML. So let's… Continue reading Day 6: What Makes React Interactive.