Responsive React Dropdown Button built with Bootstrap 5. Dropdown can be created with the use of a button or link elements.
npm install @mdbootstrap/react-dropdown-buttonResponsive React Dropdown Button built with Bootstrap 5. Dropdown can be created with the use of a button or link elements.
Check out React Bootstrap Dropdown Button Documentation for detailed instructions & even more examples.
Make sure to check out the main React Dropdowns documentation for more customization examples of dropdown buttons.
Any single tag can be turned into a dropdown toggle with some markup changes. Here’s how you can put them to work with either elements:
``jsx
import React from 'react';
import { MDBDropdown, MDBDropdownMenu, MDBDropdownToggle, MDBDropdownItem } from 'mdb-react-ui-kit';
export default function App() {
return (
);
}
`
And with elements:
`jsx
import React from 'react';
import { MDBDropdown, MDBDropdownMenu, MDBDropdownToggle, MDBDropdownItem } from 'mdb-react-ui-kit';
export default function Link() {
return (
Dropdown link
);
}
``
1. Download MDB React - free UI KIT
2. Choose your favourite customized component and click on the image
3. Copy & paste the code into your MDB project
▶️ Subscribe to YouTube channel for web development tutorials & resources
___