diff options
Diffstat (limited to 'app/components/local-button/local-button.story.tsx')
-rw-r--r-- | app/components/local-button/local-button.story.tsx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/components/local-button/local-button.story.tsx b/app/components/local-button/local-button.story.tsx index 22b2f0e..0d35ab2 100644 --- a/app/components/local-button/local-button.story.tsx +++ b/app/components/local-button/local-button.story.tsx @@ -1,12 +1,12 @@ -import * as React from "react" -import { storiesOf } from "@storybook/react-native" -import { StoryScreen, Story, UseCase } from "../../../storybook/views" -import { color } from "../../theme" -import { LocalButton } from "./local-button" +import * as React from 'react' +import { storiesOf } from '@storybook/react-native' +import { StoryScreen, Story, UseCase } from '../../../storybook/views' +import { color } from '../../theme' +import { LocalButton } from './local-button' -storiesOf("LocalButton", module) +storiesOf('LocalButton', module) .addDecorator((fn) => <StoryScreen>{fn()}</StoryScreen>) - .add("Style Presets", () => ( + .add('Style Presets', () => ( <Story> <UseCase text="Primary" usage="The primary."> <LocalButton style={{ backgroundColor: color.error }} /> |