// Good: Lazy load heavy modules
const loadChartLibrary = () => import("./chart-library.js");

// Avoid: Loading everything upfront
import ChartLibrary from "./chart-library.js";