import React from "react"; import { Container } from "react-bootstrap"; const CenteredContainer = ({ children }) => { return (
{children}
); }; export default CenteredContainer;