Category: Web Development
-
Create A Theme In MUI
In this article, we’ll customise the look and feel of the MUI Card Game site that we started previously. The process of theming a site…
-
MUI Box vs HTML div
The Box component in MUI differs from a div in that it is a React component that can take the sx prop to access the…
-
Converting A React Component To A MUI Component
In this article, I will attempt to refactor the PlayingCard component that we built in this article. The refactor will convert the component from plain…
-
React with MUI Core
In this article, we’ll build a basic UI for a card game (remember the playing card component we built earlier) using React with MUI Core.…
-
10 Essential React Libraries Every Developer Should Know About
In no particular order, here are the ten libraries that I think every React dev should at least know about. 1. MobX This is a…
-
React Dev Tools For Local Files
If you have tried to write your React components without a local web server, you may have encountered an issue where the React dev tools…
-
React Without NPM
Can you build a React app without using the NPM (node package manager) or Yarn (Yet Another Resource Negotiator)? Yes, you absolutely can. React is…
-
Creating A Component In React
We briefly examined what components are in React in the “What Is React?”. This article will show how the process of creating a React component,…
-
What is React?
React is a bunch of JavaScript code. That’s it. This code is bundled into a library that developers import into their projects and they can…
-
How Do You Start React Development Server?
To start the React development server (provided you’ve created the app using create-react-app) you need to enter the following command on the command line at…