What happens at runtime with this lazy import if no <Suspense> boundary wraps <Chart />?const Chart = React.lazy(() => import('./Chart')); function Dashboard() { return ( <div> <Chart /> </div> ); }