79407206

Date: 2025-02-02 19:40:25
Score: 0.5
Natty:
Report link

Use class container-fluid instead of container.

See the sizes for the container classes: https://getbootstrap.com/docs/5.0/layout/containers/#how-they-work

import NavigationBar from "./components/NavigationBar"
import ListGroup from './components/ListGroup';

function App() {
    return (
        <div>
            <NavigationBar />
            <div className="container-fluid">
                <div className="row align-items-start">
                    <div className="col-md-auto">
                        <ListGroup />
                    </div>
                    <div className="col-lg-auto">
                        Feed
                    </div>
                </div>
            </div>
        </div>
    );
}

export default App;
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: shotor