Skip to content

Commit

Permalink
improved README
Browse files Browse the repository at this point in the history
  • Loading branch information
kmanaseryan committed Dec 25, 2016
1 parent 4001df4 commit 62da930
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ Then add in the your route module (or the module
which runs first when you start your app) your desired modules:
```javascript
_export({
foo: './foo.js',
bar: './bar.js',
baa: './haa/baa.js'
foo: require('./foo.js'),
bar: require('./bar.js'),
baa: require('./haa/baa.js')
})
```

Expand All @@ -57,7 +57,7 @@ module.exports = {
let _export = require('importme').export;

_export({
foo: './foo.js'
foo: require('./foo.js')
})
```
```javascript
Expand Down

0 comments on commit 62da930

Please sign in to comment.