testing: add `QuickStartBar` stories
This commit is contained in:
parent
dcb5f85403
commit
96210c1477
|
@ -0,0 +1,19 @@
|
|||
import type { Meta, StoryObj } from '@storybook/react'
|
||||
|
||||
import QuickStartBar from './QuickStartBar'
|
||||
|
||||
const meta = {
|
||||
title: 'General/QuickStartBar',
|
||||
component: QuickStartBar,
|
||||
parameters: {
|
||||
layout: 'centered',
|
||||
},
|
||||
tags: ['autodocs'],
|
||||
} satisfies Meta<typeof QuickStartBar>
|
||||
|
||||
export default meta
|
||||
type Story = StoryObj<typeof meta>
|
||||
|
||||
export const Default: Story = {
|
||||
args: {},
|
||||
}
|
Loading…
Reference in New Issue