In Listings.tsx you’re exporting only one named export: default, even if looks like it, you don’t export Listings component as named export. In your index.ts you can do:
// Export Listings as named export
export { default as Listings } from './Listings';
// Re-export Listings as default
export default from './Listings';