`The problem is , i want to do two components side by side .
i'm using bootstrap not react bootstrap, i'm trying to do side by side as shown in image, but listgroup is coming sown of address form
I tried it by css but it could not work for me , so i'm expecting listgroup to right of my address form.





Here's what you can do to place components side by side in a page.
Suppose you have two components
<Form/>and<ListGroup/>. You should create a parent container and make it a flex container. Then wrap the components inside a<div/>. Code below:You can also give
flexBasis: some value in percentageto the children<div>above to say how much screen width each component should occupy.Update: (using flexBasis)