Named Export
export function f() {}
export const one = 1
export {a, b as wasd}
Each module can have ≥0 named exports
References
export default↔ Named Export with default name
Named Exportexport function f() {}
export const one = 1
export {a, b as wasd}
Each module can have ≥0 named exports
export default ↔ Named Export with default name