feat(breadcrumb-element): create story

This commit is contained in:
RadoslavDimchev 2024-04-25 23:16:22 +03:00 committed by Emil Ivanichkov
parent 7123388306
commit 6667c72e97

View File

@ -0,0 +1,29 @@
import type { Meta, StoryObj } from '@storybook/react'
import BreadcrumbElement from './BreadcrumbElement'
const meta = {
title: 'General/BreadcrumbElement',
component: BreadcrumbElement,
parameters: {
layout: 'top',
},
tags: ['autodocs'],
} satisfies Meta<typeof BreadcrumbElement>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {
element: 'Nodes',
isLastElement: false,
},
}
export const LastElement: Story = {
args: {
element: 'Nodes',
isLastElement: true,
},
}