mirror of
https://github.com/penpot/penpot.git
synced 2026-02-12 22:53:02 +00:00
13 lines
286 B
TypeScript
13 lines
286 B
TypeScript
import { Example } from './Example';
|
|
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
|
|
const meta = {
|
|
title: 'UI/Example',
|
|
component: Example,
|
|
} satisfies Meta<typeof Example>;
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const Primary: Story = {};
|