import React from 'react'; import { Button } from 'react-bootstrap'; const MyComponent = () => ( <div> <p>This contains a button which is exported by react-bootstrap</p> <Button variant="primary">Primary</Button> </div> );