import { foo } from '../module-with-long-name' import { bar } from '../node_modules/external-module-with-long-name' import dynamic from 'next/dynamic' const DynamicCustomComponent = dynamic( () => import('../components/CustomComponent'), { loading: () =>

Loading...

, } ) export default function Index() { return (
{foo} {bar}
) }