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