📜  如何通过在 react js 中下载来添加引导程序 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:02.050000             🧑  作者: Mango

代码示例1
// 1) Download bootstrap in react application by running this in terminal(CMD)
    npm install react-bootstrap bootstrap@5.1.3 
    /* @5.1.3 is optional. If you don't write then it will automatically download the latest version. */

// 2) By CDN Link  (Best and my way :)
    /* Copy this link and paste in public/index.html in header tag*/
    
    /* Copy this script tag and paste in public/index.html before closing body tag*/
    

// For more information go to https://react-bootstrap.github.io/getting-started/introduction/