Server Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object

My code is this and not able to find the error.

import ‘bootstrap/dist/css/bootstrap.min.css’;
import Nav from “../components/Nav”;

function MyApp({ Component, pageProps }) {
return (
<>

<Component {…pageProps} />
</>
)
}

export default MyApp;