20 lines
548 B
TypeScript
20 lines
548 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
|
|
import { ActivityGraph } from './ActivityGraph';
|
|
|
|
const meta = {
|
|
title: 'Components/Features/Dashboard/ActivityGraph',
|
|
component: ActivityGraph,
|
|
tags: ['autodocs'],
|
|
decorators: [
|
|
(Story) => (
|
|
<div className="w-full max-w-3xl h-[400px] p-4 bg-kodo-background">
|
|
<Story />
|
|
</div>
|
|
),
|
|
],
|
|
} satisfies Meta<typeof ActivityGraph>;
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const Default: Story = {};
|