import React from 'react' import type { Meta, StoryObj } from '@storybook/react' import { Empty } from './Empty' import { Page } from '../Page/Page' const meta: Meta = { title: 'Empty', component: Empty } export default meta type Story = StoryObj export const Example: Story = { render: () => ( No results... ) } export const WithLink: Story = { render: () => ( Your Scenes were uploaded to the Cloud. Sign In to load them back. ) } export const FixedHeight: Story = { render: () => ( This has a fixed height. ) } export const Expand: Story = { render: () => ( This expands to fill the parent. ) }