The CommonJS method of using require to load asynchronous components instead of the newer ESModules import.
require
import
const TestComponent = ( lazy(() => ( Promise .resolve( require('./TestComponent') ) )) )