I would like to know if it is possible to dynamically import a module installed via npm install.
Something like:
import("{ AsyncStorage } from react-native ???").then((module) => {
// do something with module
});
All the examples I found so far are just importing self written ES modules...