From 271687dd3a2ad93d578d17bb496d8493919f1057 Mon Sep 17 00:00:00 2001 From: Muhammed Thanish Date: Sun, 4 Sep 2016 18:14:59 +0530 Subject: [PATCH] Fix typo - Button should be button Users get an error when following the slow-start guide https://github.com/kadirahq/react-storybook/issues/422 --- src/docs/basics/slow-start-guide.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/basics/slow-start-guide.js b/src/docs/basics/slow-start-guide.js index 9b41e22..896d136 100644 --- a/src/docs/basics/slow-start-guide.js +++ b/src/docs/basics/slow-start-guide.js @@ -71,10 +71,10 @@ export default { storiesOf('Button', module) .add('with text', () => ( - + )) .add('with some emoji', () => ( - + )); ~~~