Nextjs Core Nav Pills
-Pro Component
Style
You will find the styles for this component in
assets/jss/nextjs-material-dashboard-pro/components/navPillsStyle.js
.
Example
For more examples, please check our Panels view.
Collaboratively administrate empowered markets via plug-and-play
networks. Dynamically procrastinate B2C users after installed
base benefits.
Dramatically visualize customer directed convergence without revolutionary ROI. Collaboratively administrate empowered markets via plug-and-play networks. Dynamically procrastinate B2C users after installed base benefits.
This is very nice.
Dramatically visualize customer directed convergence without revolutionary ROI. Collaboratively administrate empowered markets via plug-and-play networks. Dynamically procrastinate B2C users after installed base benefits.
This is very nice.
Efficiently unleash cross-media information without cross-media
value. Quickly maximize timely deliverables for real-time
schemas.
Dramatically maintain clicks-and-mortar solutions without functional solutions.
Dramatically maintain clicks-and-mortar solutions without functional solutions.
Completely synergize resource taxing relationships via premier
niche markets. Professionally cultivate one-to-one customer
service with robust ideas.
Dynamically innovate resource-leveling customer service for state of the art customer service.
Dynamically innovate resource-leveling customer service for state of the art customer service.
import React from 'react';
import NavPills from "components/NavPills/NavPills.js";
export default function Example(){
return (
<NavPills
color="warning"
tabs={[
{
tabButton: "Profile",
tabContent: (
<span>
<p>
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate
B2C users after installed base benefits.
</p>
<br />
<p>
Dramatically visualize customer directed convergence
without revolutionary ROI. Collaboratively
administrate empowered markets via plug-and-play
networks. Dynamically procrastinate B2C users after
installed base benefits.
</p>
<br />
<p>This is very nice.</p>
</span>
)
},
{
tabButton: "Settings",
tabContent: (
<span>
<p>
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely
deliverables for real-time schemas.
</p>
<br />
<p>
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
</p>
</span>
)
},
{
tabButton: "Options",
tabContent: (
<span>
<p>
Completely synergize resource taxing relationships
via premier niche markets. Professionally cultivate
one-to-one customer service with robust ideas.{" "}
</p>
<br />
<p>
Dynamically innovate resource-leveling customer
service for state of the art customer service.
</p>
</span>
)
}
]}
/>
);
}
Props
NavPills.defaultProps = {
active: 0,
color: "primary",
};
NavPills.propTypes = {
// index of the default active pill
active: PropTypes.number,
tabs: PropTypes.arrayOf(
PropTypes.shape({
tabButton: PropTypes.string,
tabIcon: PropTypes.object,
tabContent: PropTypes.node,
})
).isRequired,
color: PropTypes.oneOf([
"primary",
"warning",
"danger",
"success",
"info",
"rose",
]),
direction: PropTypes.string,
horizontal: PropTypes.shape({
tabsGrid: PropTypes.object,
contentGrid: PropTypes.object,
}),
alignCenter: PropTypes.bool,
};
If you wish to change this component, you should also check the following props from the base Material-UI components: