From a9840a769d015166eacbae439325871b8cc09079 Mon Sep 17 00:00:00 2001 From: Ryan Atkinson Date: Thu, 2 Mar 2017 17:31:58 -0800 Subject: [PATCH] Remove unnecessary import from react-button example `import { action } from '@kadira/storybook'` created an unused import. --- src/stories/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stories/index.js b/src/stories/index.js index 4b96ae9..ead1670 100644 --- a/src/stories/index.js +++ b/src/stories/index.js @@ -1,5 +1,5 @@ import React from 'react'; -import { storiesOf, action, linkTo } from '@kadira/storybook'; +import { storiesOf, linkTo } from '@kadira/storybook'; import Button from '../index'; storiesOf('Button', module)