LACK: Erwartet das Ergebnis eines dynamischen Import () -Anrufs. Stattdessen empfangen: [Objektmodul]

const Contacts = React.lazy(() =>
   import('./Contacts.js').then(module => ({
      default: module.Contacts
   }))
);
Condemned Cormorant