From ed05f110aac5f3616fc02645000784b0e431ee25 Mon Sep 17 00:00:00 2001 From: Owen Xi Date: Wed, 6 Sep 2017 11:21:34 +1000 Subject: [PATCH] Fix: missing dotContainer style --- components/Dots.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/components/Dots.js b/components/Dots.js index e01f1c8..745c101 100644 --- a/components/Dots.js +++ b/components/Dots.js @@ -34,7 +34,11 @@ export const RenderDots = (index, total, props) => { active: i === index })); } - return dots; + return ( + + {dots} + + ); } export default RenderDots; \ No newline at end of file