21 lines
427 B
TypeScript
21 lines
427 B
TypeScript
|
|
import type { Meta, StoryObj } from '@storybook/nextjs-vite'
|
||
|
|
import { UtilityBar } from './UtilityBar'
|
||
|
|
|
||
|
|
const meta: Meta<typeof UtilityBar> = {
|
||
|
|
title: 'Widgets/UtilityBar',
|
||
|
|
component: UtilityBar,
|
||
|
|
decorators: [
|
||
|
|
(Story) => (
|
||
|
|
<div className="relative h-24 bg-ochre-clay">
|
||
|
|
<Story />
|
||
|
|
</div>
|
||
|
|
),
|
||
|
|
],
|
||
|
|
}
|
||
|
|
|
||
|
|
export default meta
|
||
|
|
|
||
|
|
type Story = StoryObj<typeof UtilityBar>
|
||
|
|
|
||
|
|
export const Default: Story = {}
|