import React, { Suspense } from 'react'; const Sample = React.lazy(()=> import('./Sample') ); Const Demo = () => { return( Loading...}> ) }