Skip to content

Commit

Permalink
#290 Replace module.exports with export default
Browse files Browse the repository at this point in the history
  • Loading branch information
zaki-yama committed Feb 6, 2019
1 parent 82251d5 commit f5c7527
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion stories/data/CAMPAIGNS.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = `
export default `
Online Seminar
Event
Survey
Expand Down
2 changes: 1 addition & 1 deletion stories/data/CASES.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = new Array(1001).join('_').split('')
export default new Array(1001).join('_').split('')
.map((a, i) => {
const padded = new Array(5).join('0') + i;
return padded.substring(padded.length - 5);
Expand Down
2 changes: 1 addition & 1 deletion stories/data/COMPANIES.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = `
export default `
Apple Inc.
Alphabet Inc.
Microsoft Corporation
Expand Down
2 changes: 1 addition & 1 deletion stories/data/OPPORTUNITIES.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = `
export default `
New License
Professional Service
Additional License
Expand Down
2 changes: 1 addition & 1 deletion stories/data/SCOPES.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = `
export default `
Account
Campaign
Case
Expand Down

0 comments on commit f5c7527

Please sign in to comment.