Skip to content

Instantly share code, notes, and snippets.

@michaeljacobdavis
Created August 15, 2017 03:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaeljacobdavis/aa6098ac1f327d177fd65019c62d43c4 to your computer and use it in GitHub Desktop.
Save michaeljacobdavis/aa6098ac1f327d177fd65019c62d43c4 to your computer and use it in GitHub Desktop.
module.exports = {
hello: 'hello',
blah: 'blah',
default: 'default'
}
module.exports = {
default: {
foo: 'bar'
}
}
export default {
foo: 'bar'
}
export const hello = 'hello'
export const blah = 'blah'
export default 'default'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment