Best of BootstrapNovember 2022

  1. 1
    Article
    Avatar of communityCommunity Picks·3y

    Comparing Tailwind CSS to Bootstrap: Is it time to ditch UI kits?

    Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces. It offers you a collection of classes you can slap onto your HTML and style, all without ever touching CSS. tailwind CSS provides developers lots of flexibility and control over how a component looks and feels, whereas typical UI kits come with several prebuilt components.

  2. 2
    Article
    Avatar of communityCommunity Picks·3y

    How to Create a Dynamic Navigation Bar using ReactJS

    This type of navigation bar can be used by users who can freely add, edit and delete a menu in the sidebar. Before we proceed to the actual code, we need first to install reactJS, react-bootstrap, and react-icons for faster development of this simple Link event. Next, I made a function that returns a dropdown component that allows user to delete, edit, and add a menu item. But first I need to import the needed components.

  3. 3
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    React Testing Library Tutorial – How to Write Unit Tests for React Apps

    The React Testing Library has a set of packages that help you test UI components in a user-centric way. This means it tests based on how the user interacts with the various elements displayed on the page. To set up a React Project with Vite, we'll be using Vite to set up our app that we'll test.