Is it possible to load a component into a bundled react-native app dynamically and from an external URL?
Example of what I eventually want to achieve
const id = await fetch('http://example.com/getid/');
import CustomModule from `http://example.com?id=${id}`
export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<CustomModule />
</View>
);
}
}