Saving information to local storage can be incredibly useful and can make for a far better user experience in your apps. Imagine if you had to log in from scratch every time you wanted to look at Twitter! By using the localStorage method in React, we can make save certain information to the user’s machine […]
Tag: Reactjs
Changing Styling Using React State
When using React, one of the easiest ways to make style changes to an element on an event is by using state. In this example, we’ll be looking at how we can change the corners of a button from pointed to rounded on click. I know this isn’t something you’re likely to be doing on […]
Creating a New React App
In this post, I’ll be taking you through a simple way to set up a new React App. First, you’ll need to install Node.js. If you’re not sure if you have it you can check using Command Prompt or Terminal. If you’ve never use the Command Prompt or Terminal before, it is an application which […]