blob: 14a5f627e7a8963e3d74465bbb33b94668433c49 (
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>
))
|