summaryrefslogtreecommitdiff
path: root/app/components/wallpaper/wallpaper.story.tsx
blob: 8f5488a51d9aa7e7ffbc5671e39d0e81398511b2 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import * as React from "react"
import { storiesOf } from "@storybook/react-native"
import { StoryScreen, Story, UseCase } from "../../../storybook/views"
import { Wallpaper } from "./wallpaper"

declare let module

storiesOf("Wallpaper", module)
  .addDecorator((fn) => <StoryScreen>{fn()}</StoryScreen>)
  .add("Style Presets", () => (
    <Story>
      <UseCase text="default/stretch" usage="Full screen wallpaper image.">
        <Wallpaper />
      </UseCase>
    </Story>
  ))