`export const` vs. `export default` in ES6
It’s a named export vs a default export. export const is a named export that exports a const declaration or declarations. To emphasize: what matters here is the export keyword as const is used to declare a const declaration or declarations. export may also be applied to other declarations such as class or function declarations. … Read more