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;