Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumReactlazy and SuspenseSingle-choice MCQ

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> ); }