Re-export from other modules to create a single entry point. This is common for library index files.
// index.js
export { add, subtract } from "./math.js";
export { format } from "./string.js";
export { default as User } from "./User.js";
Consumers import from index.js instead of individual files.