Default Exports

by Jacob King

JavaScript

// multiply.js
const multiply = (a, b) => a * b;
export default multiply;