This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
website/components/Header/Header.stories.tsx

13 lines
257 B
TypeScript
Raw Normal View History

2021-10-24 05:48:06 +02:00
import { Meta, Story } from '@storybook/react'
import { Header as Component } from '.'
2021-10-24 05:48:06 +02:00
const Stories: Meta = {
title: 'Header',
component: Component
}
export default Stories
export const Header: Story = (arguments_) => <Component {...arguments_} />