diff --git a/src/pages/PairDevice/PairedSuccessfully.stories.tsx b/src/pages/PairDevice/PairedSuccessfully.stories.tsx new file mode 100644 index 00000000..3744ed5d --- /dev/null +++ b/src/pages/PairDevice/PairedSuccessfully.stories.tsx @@ -0,0 +1,20 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import PairedSuccessfully from './PairedSuccessfully' + +const meta = { + title: 'Pair Device/PairedSuccessfully', + component: PairedSuccessfully, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], + argTypes: {}, +} satisfies Meta + +export default meta +type Story = StoryObj + +export const PairedSuccessfullyExample: Story = { + args: {}, +}