I just began a new react app and wanted to implement react-bootstrap (did so by running npm install react-bootstrap bootstrap) The Column, Row and Button tags are not working, and the react-bootstrap folder exists in the node-modules folder.
import React from 'react';
import Container from 'react-bootstrap/Container';
import Row from 'react-bootstrap/Row';
import {Button, Col} from 'react-bootstrap';
class App extends React.Component {
constructor(props) {
super(props)
}
render() {
return(
<Container fluid>
<Row>
<Col>
hi
</Col>
<Col>
bye
</Col>
</Row>
<Button variant='primary'>hi</Button>
</Container>
)
}
}
export default App;