Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save szaranger/f3bdabf00a024f178d67f363f693edde to your computer and use it in GitHub Desktop.
Save szaranger/f3bdabf00a024f178d67f363f693edde to your computer and use it in GitHub Desktop.
let users;
if (userType === 'ADMIN') {
users = await import('https://example.com/users/1');
} else {
users = await import('https://example.com/users/2');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment