react native bootstrap code example

Example 1: react import bootstrap css

{/* The following line can be included in your src/index.js or App.js file*/}

import 'bootstrap/dist/css/bootstrap.min.css';

Example 2: install boostrap react

npm install react-bootstrap bootstrap

Example 3: import bootstrap react

import 'bootstrap/dist/css/bootstrap.css';// Put any other imports below so that CSS from your// components takes precedence over default styles.Copy

Example 4: how to install bootstrap in react

npm install --save bootstrapCopy

Example 5: react native

npx react-native init AwesomeProject

Example 6: react native bootstrap

import Button from 'react-bootstrap/Button';

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

Tags:

Misc Example