From bcea5d58ede9e00194158383dc401b0f3aabf586 Mon Sep 17 00:00:00 2001 From: Dhenain Ambroise Date: Sun, 17 Jan 2021 09:20:04 +0100 Subject: [PATCH] Remove stories of components that don't exist in this preset --- .../nrn/layout/QuickPreviewLayout.stories.tsx | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/stories/nrn/layout/QuickPreviewLayout.stories.tsx diff --git a/src/stories/nrn/layout/QuickPreviewLayout.stories.tsx b/src/stories/nrn/layout/QuickPreviewLayout.stories.tsx deleted file mode 100644 index 63afc6620..000000000 --- a/src/stories/nrn/layout/QuickPreviewLayout.stories.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import { - Meta, - Story, -} from '@storybook/react/types-6-0'; -import React from 'react'; -import { ExplanationTooltipOverlay } from '../../../components/pageLayouts/PreviewModeBanner'; -import QuickPreviewLayout, { Props } from '../../../components/pageLayouts/QuickPreviewLayout'; - -export default { - title: 'Next Right Now/Layout/QuickPreviewLayout', - component: QuickPreviewLayout, - argTypes: {}, -} as Meta; - -export const DefaultExample: Story = () => { - return ( - // @ts-ignore - -
- Component displayed in quick preview on external 3rd party site -
-
- ); -};