import React from 'react'; import { ComponentStory, ComponentMeta } from '@storybook/react'; import OfflineBanner from '../components/ui/OfflineBanner/OfflineBanner'; import OfflineState from './assets/mocks/offline-state.png'; export default { title: 'owncast/Layout/Offline Banner', component: OfflineBanner, parameters: { design: { type: 'image', url: OfflineState, scale: 0.5, }, docs: { description: { component: `When the stream is offline the player should be replaced by this banner that can support custom text and notify actions.`, }, }, }, } as ComponentMeta; const Template: ComponentStory = args => ; export const ExampleDefault = Template.bind({}); ExampleDefault.args = { text: 'To get notifications when is back online you can follow or ask for notifications.', }; export const ExampleCustom = Template.bind({}); ExampleCustom.args = { text: 'This is some example offline text that a streamer can leave for a visitor of the page.', };