Is there in Ant Design for React the Bootstrap Grid "container" concept?
Containers are the most basic layout element in Bootstrap and are required when using our default grid system. Choose from a responsive, fixed-width container (meaning its max-width changes at each breakpoint) or fluid-width (meaning it’s 100% wide all the time).
While containers can be nested, most layouts do not require a nested container.
<div class="container"> <!-- Content here --> </div>
You can create a container from Row and Col
For the space of the sides
For the content
the sum of the 3 must give 24
Example:
If you need more breakpoint for the responsive use the other points: xs, sm, md, lg, xl, xxl.