Skip to content

Instantly share code, notes, and snippets.

@gauntface
Created July 19, 2017 15:01
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 gauntface/732acdb3876ee6901deddc923a6aa779 to your computer and use it in GitHub Desktop.
Save gauntface/732acdb3876ee6901deddc923a6aa779 to your computer and use it in GitHub Desktop.
Example of a module exporting everything
import Router from './lib/Router';
import Route from './lib/Route';
import ExpressRoute from './lib/ExpressRoute';
export {
Router,
Route,
ExpressRoute
}
export default new Router();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment