summaryrefslogtreecommitdiff
path: root/ignite/templates/component/NAME.story.tsx.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'ignite/templates/component/NAME.story.tsx.ejs')
-rw-r--r--ignite/templates/component/NAME.story.tsx.ejs15
1 files changed, 0 insertions, 15 deletions
diff --git a/ignite/templates/component/NAME.story.tsx.ejs b/ignite/templates/component/NAME.story.tsx.ejs
deleted file mode 100644
index fca346c..0000000
--- a/ignite/templates/component/NAME.story.tsx.ejs
+++ /dev/null
@@ -1,15 +0,0 @@
-import * as React from "react"
-import { storiesOf } from "@storybook/react-native"
-import { StoryScreen, Story, UseCase } from "../../../storybook/views"
-import { color } from "../../theme"
-import { <%= props.pascalCaseName %> } from "./<%= props.kebabCaseName %>"
-
-storiesOf("<%= props.pascalCaseName %>", module)
- .addDecorator((fn) => <StoryScreen>{fn()}</StoryScreen>)
- .add("Style Presets", () => (
- <Story>
- <UseCase text="Primary" usage="The primary.">
- <<%= props.pascalCaseName %> style={{ backgroundColor: color.error }} />
- </UseCase>
- </Story>
- ))