Node.js require vs React.js import
I know that in Node.js, when you require some file with variables or functions, from the second time it is loaded from the memory.
This concept is the same in import in React.js?
Can I load multiple variables or functions using import, and it will load from the memory the second time?