Member-only story
Building a Basic Header With MaterialUI and React
Read on for how to build a clean, simple header
Hey, all. Anh here. I am a web developer who recently helped build a responsive header for Femmecubator, an up-and-coming web app that seeks to provide resources and support for women of color in tech. In this article, I will guide you through how to create your own simple desktop header using MaterialUI and React.
By the end of this tutorial, you should accomplish the following result:
1. Setup
- Create a new React app by running
npx create-react-app header-app
in your terminal. cd
intoheader-app
.- Install the Material UI library and React Router DOM by running
npm i @material-ui/core react-router-dom
. - Since we will be using the
Link
component fromreact-router-dom
later in this tutorial, we need to wrap ourApp.js
component withinBrowserRouter
. Without this step, our app will crash when we attempt to useLink
.
2. Create a Header Component
- Create a Header component in
Header.js
. - Import
AppBar
andToolBar
from@material-ui/core
. These are premade components that will simplify the creation of our header component. Create a function calleddisplayDesktop
and add theToolBar
component here with some greeting text. Then, wrap the function call in between anAppBar
component in theHeader
return
statement:
- Import
Header.js
intoApp.js
: