postImage

How to Create React Tabs with Tailwind CSS

blogImage

By Emmanuel Ovuoba

Technical Writer/Web Developer

Tabs are a common UI element used to organize content and improve the user experience. With React and Tailwind CSS, you can create flexible and customizable tabs that seamlessly integrate into your React applications. We will walk you through the process of setting up a React project, installing Tailwind CSS, creating the necessary components, and styling the react tabs to achieve the desired look and functionality.

Prerequisites

  • Basic knowledge of React
  • Basic knowledge of Tailwind CSS
  • Node.js and NPM installed on your computer

Step 1: Create a new React app

To create a new React app, open your terminal and run the following command:

lua
npx create-react-app react-tabs-tailwind

This will create a new React app called react-tabs-tailwind.

Step 2: Install Tailwind CSS

To install Tailwind CSS, run the following command in your terminal:

lua
npm install tailwindcss

Step 3: Configure Tailwind CSS

Create a new file called tailwind.config.js in the root directory of your project and add the following code:

js
Copy code
module.exports = {
mode: 'jit',
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}

This will configure Tailwind CSS for your project.

Step 4: Add Tailwind CSS to your project

Open the index.css file in the src directory and add the following code:

css
@tailwind base;
@tailwind components;
@tailwind utilities;

This will add Tailwind CSS to your project.

Step 5: Create a new component called Tabs

Create a new file called Tabs.js in the src/components directory and add the following code:

jsx
import React, { useState } from 'react';
const Tabs = ({ children }) => {
const [activeTab, setActiveTab] = useState(children[0].props.label);
const handleClick = (e, newActiveTab) => {
e.preventDefault();
setActiveTab(newActiveTab);
};
return (
<div className="max-w-md mx-auto">
<div className="flex border-b border-gray-300">
{children.map(child => (
<button
key={child.props.label}
className={`${
activeTab === child.props.label ? 'border-b-2 border-purple-500' : ''
} flex-1 text-gray-700 font-medium py-2`}
onClick={e => handleClick(e, child.props.label)}
>
{child.props.label}
</button>
))}
</div>
<div className="py-4">
{children.map(child => {
if (child.props.label === activeTab) {
return <div key={child.props.label}>{child.props.children}</div>;
}
return null;
})}
</div>
</div>
);
};
const Tab = ({ label, children }) => {
return (
<div label={label} className="hidden">
{children}
</div>
);
};
export { Tabs, Tab };

This component takes an array of tabs as a prop and renders the tab navigation and content.

Step 6: Create a new component called App

Open the App.js file in the src directory and replace the existing code with the following:

jsx
import React from 'react';
import { Tabs, Tab } from './Tabs';
const App = () => {
return (
<div>
<Tabs>
<Tab label="Tab 1">
<div className="py-4">
<h2 className="text-lg font-medium mb-2">Tab 1 Content</h2>
<p className="text-gray-700">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime mollitia, molestiae
quas vel sint commodi repudiandae consequuntur voluptatum laborum numquam blanditiis
harum quisquam eius sed odit fugiat iusto fuga praesentium optio, eaque rerum!
Provident similique accusantium nemo autem. Veritatis obcaecati tenetur iure eius
earum ut molestias architecto voluptate aliquam nihil, eveniet aliquid culpa officia
aut! Impedit sit sunt quaerat, odit, tenetur error, harum nesciunt ipsum debitis quas
aliquid. Reprehenderit, quia. Quo neque error repudiandae fuga? Ipsa laudantium
molestias eos sapiente officiis modi at sunt excepturi expedita sint? Sed quibusdam
recusandae alias error harum maxime adipisci amet laborum.
</p>
</div>
</Tab>
<Tab label="Tab 2">
<div className="py-4">
<h2 className="text-lg font-medium mb-2">Tab 2 Content</h2>
<p className="text-gray-700">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime mollitia, molestiae
quas vel sint commodi repudiandae consequuntur voluptatum laborum numquam blanditiis
harum quisquam eius sed odit fugiat iusto fuga praesentium optio, eaque rerum!
Provident similique accusantium nemo autem. Veritatis obcaecati tenetur iure eius
earum ut molestias architecto voluptate aliquam nihil, eveniet aliquid culpa officia
aut! Impedit sit sunt quaerat, odit, tenetur error, harum nesciunt ipsum debitis quas
aliquid. Reprehenderit, quia. Quo neque error repudiandae fuga? Ipsa laudantium
molestias eos sapiente officiis modi at sunt excepturi expedita sint? Sed quibusdam
recusandae alias error harum maxime adipisci amet laborum.
</p>
</div>
</Tab>
<Tab label="Tab 3">
<div className="py-4">
<h2 className="text-lg font-medium mb-2">Tab 3 Content</h2>
<p className="text-gray-700">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime mollitia, molestiae
quas vel sint commodi repudiandae consequuntur voluptatum laborum numquam blanditiis
harum quisquam eius sed odit fugiat iusto fuga praesentium optio, eaque rerum!
Provident similique accusantium nemo autem. Veritatis obcaecati tenetur iure eius
earum ut molestias architecto voluptate aliquam nihil, eveniet aliquid culpa officia
aut! Impedit sit sunt quaerat, odit, tenetur error, harum nesciunt ipsum debitis quas
aliquid. Reprehenderit, quia. Quo neque error repudiandae fuga? Ipsa laudantium
molestias eos sapiente officiis modi at sunt excepturi expedita sint? Sed quibusdam
recusandae alias error harum maxime adipisci amet laborum.
</p>
</div>
</Tab>
</Tabs>
</div>
);
};
export default App;

In this code, we've added some content to each Tab component using Tailwind CSS classes for styling. The content consists of a heading and a paragraph of text. When a tab is active, its content is displayed below the tab buttons. The Tabs component now maps over its children to find the active tab's content and renders it. Note that the Tab component itself is still hidden and only serves to define the label of each tab.

Step7: Rendering the content on the application

Now, we have to show the tabs we have created on our web page by rendering it on our index.js file.

jsx
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);

After rendering the application, our react Tabs with Tailwind css will look like the image below.

Tailwind react tab

Tailwind react tab 1

tailwind react tab 2

Conclusion

Creating React tabs with Tailwind CSS is a straightforward process that allows you to build interactive and visually appealing tab components. By utilizing React's component-based architecture and Tailwind CSS's utility classes, you can easily manage tab navigation and render dynamic content based on user interaction. Experiment with different styles and customization options to match your application's designs. With Tailwind CSS, you can easily customize the tabs to fit your specific design needs.

Build modern projects using Bootstrap 5 and Contrast

Trying to create components and pages for a web app or website from scratch while maintaining a modern User interface can be very tedious. This is why we created Contrast, to help drastically reduce the amount of time we spend doing that. so we can focus on building some other aspects of the project.

Contrast Bootstrap PRO consists of a Premium UI Kit Library featuring over 10000+ component variants. Which even comes bundled together with its own admin template comprising of 5 admin dashboards and 23+ additional admin and multipurpose pages for building almost any type of website or web app.
See a demo and learn more about Contrast Bootstrap Pro by clicking here.

ad-banner

Related Posts

Comments

...