xxxxxxxxxx
import logo from './logo.svg';
import './App.css';
/*need to include both of the lines below for component to work*/
/*the first line is bootstrap css in general, the second is the Button component itself*/
import 'bootstrap/dist/css/bootstrap.min.css';
import Button from 'react-bootstrap/Button';
function App() {
return (
<div className="App">
<Button as="a" variant="primary">
I am a react bootstrap primary button
</Button>
<Button as="a" variant="success">
I am a react bootstrap success button
</Button>
</div>
);
}
export default App;