react native bootstrap

JavaScript
import 'bootstrap/dist/css/bootstrap.css';// Put any other imports below so that CSS from your// components takes precedence over default styles.Copy{/* The following line can be included in your src/index.js or App.js file*/}

import 'bootstrap/dist/css/bootstrap.min.css';npm install react-bootstrap bootstrapnpm install --save bootstrapCopynpx react-native init AwesomeProject
import Button from 'react-bootstrap/Button';

// or less ideally
import { Button } from 'react-bootstrap';
Source

Also in JavaScript: