Category: Web Development
-
Deleting a react-app
Deleting a react app from your local development environment is typically straightforward. To do so, just delete the folder in which your source files reside.…
-
How To Write Blog Posts Faster: 10 Great Tips
If you own your own website and have any experience in it you will realize very quickly that content is King. Without content on your…
-
How Long Before You Get Traffic On Your Blog Or Website?
If you are creating your first websites whether it be a blog or something else you may be wondering how long does it actually take…
-
Do professional web developers use bootstrap?
Yes. Professional web developers do use bootstrap. They also use the tools and frameworks at their disposal that make the most sense for the project…
-
Should I learn PHP or React?
There is no right or wrong answer here. You need to consider what you are trying to build. PHP is great for back end programming…
-
What is a stateless component in React?
Stateless components in React are components that don’t manage data. For example, a stateless component might render the same thing each time, like a logo…
-
Where should functions in function components go?
It is technically possible to define functions inside functional components as in the following example: The main issue with the above example is that myInsideFunction…
-
Conditional rendering in React
Conditional rendering is the act of showing/hiding your elements/components based on the state of your application. Just like in any framework/language this can be done…
-
onClick with a parameter in React
It can be difficult to understand just how to pass a parameter to a React function from an onClick call, and it can even be…
-
Injecting singletons into your React components
Sometimes you’ll need to use the singleton pattern in your applications and there is an easy way to inject these into your React components. This…