import * as React from 'react'
import { storiesOf } from '@storybook/react'
import centered from '@storybook/addon-centered/react'
import { Empty } from './Empty'
import { Page } from '../Page/Page'
storiesOf('Empty', module)
.addDecorator(centered)
.add('Example', () => (
No results...
))
.add('With link', () => (
Your Scenes were uploaded to the Cloud. Sign In to load them
back.
))
.add('Fixed height', () => (
This has a fixed height.
))
.add('Expand', () => (
This expands to fill the parent.
))