You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
659 B
23 lines
659 B
import React from 'react'; |
|
import { ComponentStory, ComponentMeta } from '@storybook/react'; |
|
import PageLogo from '../components/PageLogo'; |
|
|
|
export default { |
|
title: 'owncast/Page Logo', |
|
component: PageLogo, |
|
parameters: {}, |
|
} as ComponentMeta<typeof PageLogo>; |
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars |
|
const Template: ComponentStory<typeof PageLogo> = args => <PageLogo {...args} />; |
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars |
|
export const Logo = Template.bind({}); |
|
Logo.args = { |
|
url: '/logo', |
|
}; |
|
|
|
export const DemoServer = Template.bind({}); |
|
DemoServer.args = { |
|
url: 'https://watch.owncast.online/logo', |
|
};
|
|
|