Home > Enterprise >  React-Bootstrap cols not showing side by side and shows in new line
React-Bootstrap cols not showing side by side and shows in new line

Time:12-19

I am trying to add enter image description here

I didnt understand what I missed

CodePudding user response:

Change this...

import Col from "react-bootstrap/Row";

...to this.

import Col from "react-bootstrap/Col";.

  • Related