All Questions
6 questions
0
votes
1
answer
524
views
How to use background image in react bootstrap?
I'm new to react boostrap and I'm confused how can I set the background image on a page here is my app.js. I tried writing some code in return <div>.
In my button I just write the className and ...
2
votes
1
answer
2k
views
Why reactstrap carousel code snippet on document is not working?
I have tried to reactstrap carousel. I copied some codes below it, and tried to use it in my codebase. Carousel tag begin with UncontrolledCarousel working well. But I dont know why this code throw ...
1
vote
2
answers
3k
views
How do I get a react bootstrap card to center vertically?
I have the following code for a card to that I want to center vertically:
import React from 'react';
import {
Card,
CardHeader,
CardBody,
CardTitle,
Row,
Col,
Container
} from "...
0
votes
1
answer
1k
views
How to use innerRef in ReactStrap ? #TypeError: Cannot read property 'username' of undefined
I want to fetch form data from innerRef in Reactstrap. But I am getting TypeError: Cannot read property 'username' of undefined
Code
<FormGroup>
<Label htmlFor="...
3
votes
2
answers
1k
views
How can I vertically stack left, right, and center columns in that order with reactstrap on md breakpoint?
I am using reactstrap to style my three column page
<Row>
<Col md="4">Left</Col>
<Col md="9">Center</Col>
<Col md="5">Right</Col>
</Row>
...
1
vote
1
answer
426
views
Looking to integrate free templates from 'https://startbootstrap.com/' into my react app
I want to download one of the free bootstrap templates and add said template to my react app. I tried reading some of the documents but I can't find any documentation on integrating these free ...