From 00af0007c187b9886a521bba0cefc869574c72a8 Mon Sep 17 00:00:00 2001 From: daniel-shuy Date: Wed, 16 Aug 2017 15:00:28 +0800 Subject: [PATCH] Fix #2: Change module.exports to export --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index f460d18..c20fa98 100644 --- a/src/index.js +++ b/src/index.js @@ -1,7 +1,7 @@ import LinearGauge from './LinearGauge' import RadialGauge from './RadialGauge' -module.exports = { +export { LinearGauge, RadialGauge }