Named exports vs Default exports
In JavaScript, there are two ways to export values from a module:
Named exports and
default exports
Named export
A named export allows you to export one or more values from a module using a specific name. This means that when you import the expor...
madhavan.hashnode.dev2 min read