Skip to content

Commit

Permalink
refactor(index): export statement in one line
Browse files Browse the repository at this point in the history
  • Loading branch information
tothandras committed Oct 16, 2015
1 parent 9259f4d commit 8ff21d7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ users(id: ["relayId1", "relayId2"]) {}
## Supported mutation arguments

* scalar types
* arrays
* references

Examples:
Expand Down
3 changes: 1 addition & 2 deletions src/model/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
import model from './model';
export default model;
export default from './model';
3 changes: 1 addition & 2 deletions src/query/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
import query from './query';
export default query;
export default from './query';
3 changes: 1 addition & 2 deletions src/schema/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
import schema from './schema';
export default schema;
export default from './schema';
3 changes: 1 addition & 2 deletions src/type/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
import type from './type';
export default type;
export default from './type';

0 comments on commit 8ff21d7

Please sign in to comment.