From 059b8a3e86ac5fb084e2c24a6dffd3eaa15f9c31 Mon Sep 17 00:00:00 2001 From: Stuart Aylward Date: Thu, 9 Aug 2018 10:40:51 +0100 Subject: [PATCH] Update index.js update export syntax style as requested --- index.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 55f3370..29e7a15 100644 --- a/index.js +++ b/index.js @@ -1,2 +1,4 @@ -export { default as CircularProgress } from './src/CircularProgress'; -export { default as AnimatedCircularProgress } from './src/AnimatedCircularProgress'; +import CircularProgress from './src/CircularProgress'; +import AnimatedCircularProgress from './src/AnimatedCircularProgress'; + +export { CirculartProgress, AnimatedCircularProgress }