NextJS error : "You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports."
In a Next.js React web application we can export functionality 2 ways:
As a function definition
export function MDXComponents(props) { ... }
As an arrow function
const MDXLayoutRenderer = () => { ... };
export default MDXLayoutRenderer;
It is importa...
njukicodes.hashnode.dev1 min read