You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
456 B
22 lines
456 B
import type { Meta, StoryObj } from '@storybook/react';
|
|
|
|
import { Footer } from '@/components/footer';
|
|
|
|
const meta: Meta<typeof Footer> = {
|
|
title: 'Footer',
|
|
component: Footer,
|
|
decorators: [
|
|
(Story) => (
|
|
<div className="flex h-screen flex-col">
|
|
<div className="mt-auto h-32">
|
|
<Story />
|
|
</div>
|
|
</div>
|
|
),
|
|
],
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof Footer>;
|
|
|
|
export const Normal: Story = {};
|
|
|