Skip to content

Commit

Permalink
✅ test: create the cursor storybook
Browse files Browse the repository at this point in the history
  • Loading branch information
Bear29ers committed Apr 14, 2024
1 parent 2eb210e commit d105cd0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/components/Cursor/Cursor.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import Cursor from './Cursor';

import type { Meta, StoryObj } from '@storybook/react';

const meta: Meta<typeof Cursor> = {
component: Cursor,
};

export default meta;

type Story = StoryObj<typeof Cursor>;

export const Default: Story = {
render: () => <Cursor />,
};

0 comments on commit d105cd0

Please sign in to comment.