Skip to content

Instantly share code, notes, and snippets.

@mtmr0x
Created March 31, 2016 01:52
Show Gist options
  • Select an option

  • Save mtmr0x/a886130f149baf6228f8fb024c583a73 to your computer and use it in GitHub Desktop.

Select an option

Save mtmr0x/a886130f149baf6228f8fb024c583a73 to your computer and use it in GitHub Desktop.
// Require all .js and .jsx files inside tree
let reactFiles = require.context("./components", true, /^(.*\.(jsx?$))[^.]*$/igm);
reactFiles.keys().forEach(function(key){
reactFiles(key);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment