So I recently started learning react and noticed that all the documentation has imports that look like else:
import { Apples, Bananas, Oranges } from 'fruits';
But while studying react I found that this syntax works just as well:
import * as Fruits from 'fruits';
My Question: Is there any performance loss or logical conflict with using the import all syntax?
If there is not then I will just keep using that syntax. I would rather be a little more verbose and not have to worry about making sure everything has been imported.