From 3f302431f022549b8db94e2a1b9fbb4937e8094c Mon Sep 17 00:00:00 2001 From: TJ Egan Date: Thu, 20 Feb 2020 16:37:14 +0100 Subject: [PATCH] docs(FormItem): remove FormItem story (#5379) --- .../src/components/FormItem/FormItem-story.js | 25 ------------------- 1 file changed, 25 deletions(-) delete mode 100644 packages/react/src/components/FormItem/FormItem-story.js diff --git a/packages/react/src/components/FormItem/FormItem-story.js b/packages/react/src/components/FormItem/FormItem-story.js deleted file mode 100644 index 685a985908c9..000000000000 --- a/packages/react/src/components/FormItem/FormItem-story.js +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Copyright IBM Corp. 2016, 2018 - * - * This source code is licensed under the Apache-2.0 license found in the - * LICENSE file in the root directory of this source tree. - */ - -import React from 'react'; -import { storiesOf } from '@storybook/react'; -import FormItem from './FormItem'; -import NumberInput from '../NumberInput'; - -storiesOf('FormItem', module).add( - 'Default', - () => ( - - - - ), - { - info: { - text: 'Form item.', - }, - } -);