Skip to content

Instantly share code, notes, and snippets.

@obrenoco
Last active September 2, 2021 12:56
Show Gist options
  • Save obrenoco/4eaff883665abba9e9878086968035df to your computer and use it in GitHub Desktop.
Save obrenoco/4eaff883665abba9e9878086968035df to your computer and use it in GitHub Desktop.
JS import
// Default importing
import Func from 'utils'
// Entire content importing
import * as Utils from 'utils'
// Selective importing
import {Func} from 'utils'
// Selective importing with alias
import {orig as alias} from 'utils'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment