Changed Logo and Header

logo has two variants. Changed story to reflect that. Updated header
This commit is contained in:
t1enne
2022-05-08 10:45:45 +02:00
parent 93d69a26eb
commit 00bc662c7f
9 changed files with 213 additions and 171 deletions

View File

@@ -1,15 +1,15 @@
import React from 'react';
import { ComponentStory, ComponentMeta } from '@storybook/react';
import PageLogo from '../components/PageLogo';
import { OwncastLogo } from '../components/common';
export default {
title: 'owncast/Page Logo',
component: PageLogo,
title: 'owncast/Logo',
component: OwncastLogo,
parameters: {},
} as ComponentMeta<typeof PageLogo>;
} as ComponentMeta<typeof OwncastLogo>;
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const Template: ComponentStory<typeof PageLogo> = args => <PageLogo {...args} />;
const Template: ComponentStory<typeof OwncastLogo> = args => <OwncastLogo {...args} />;
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export const Logo = Template.bind({});