Can I Use React Bootstrap with Next. Js?
Does Anyone Know If You Can Use React-Bootstrap with Next. Js? I Am Using the Latest Versions of Both, I Can Provide Code at This Point, but Right Now My App...
Does anyone know if you can use react-bootstrap with Next.js? I am using the latest versions of both, I can provide code at this point, but right now my app is not throwing any errors, it is just not registering any of my react-bootstrap components. Maybe there is some trick that I have not been able to find on the internet? I can provide code or file structure if that helps. Thanks in advance!
next.config.js
const withCSS = require('@zeit/next-css')
module.exports = withCSS({
/* my next config */
})
Must Read
pages/index.js
import Badge from 'react-bootstrap/Badge';
import "../public/css/bootstrap.css";
const Index = () => (
<div>
<p className='display-4'>Hello</p>
<Badge>Heading</Badge>
</div>
)
export default Index;