Material UI — Tabs

John Au-Yeung
JavaScript in Plain English
4 min readAug 23, 2020

--

Photo by Zuriela Benitez on Unsplash

Material UI is a Material Design library made for React.

It’s a set of React components that have Material Design styles.

In this article, we’ll look at how to add tabs with Material UI.

Tabs

We can add tabs with the Tabs component.

For example, we can write:

import React from "react";
import AppBar…

--

--