/* This example requires some changes to your config: ``` // tailwind.config.js module.exports = { // ... plugins: [ // ... require('@tailwindcss/forms'), ], } ``` */ const tabs = [ { name: 'Overview', href: '#', current: true }, { name: 'Activity', href: '#', current: false }, { name: 'Settings', href: '#', current: false }, { name: 'Collaborators', href: '#', current: false }, { name: 'Notifications', href: '#', current: false }, ] export default function Example() { return (
{/* Use an "onChange" listener to redirect the user to the selected tab URL. */}
) }