I have referred all the questions in stackoverflow. But none of the suggested why and when to use default export.
I just saw that default can be metioned "When there is only one export in a file"
Any other reason for using default export in es6 modules?
Some differences that might make you choose one over the other:
Named Exports
Default Exports
This article does a nice job of explaining when it would be a good idea to use one over the other.