npx setup bootstrap code example
Example 1: bootstrap import in react
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css"
integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
Example 2: react native bootstrap
import Button from 'react-bootstrap/Button';
// or less ideally
import { Button } from 'react-bootstrap';