feat: add story for successfully paired

This commit is contained in:
RadoslavDimchev 2023-08-17 17:59:17 +03:00
parent ed44201bdb
commit 156f177497
1 changed files with 20 additions and 0 deletions

View File

@ -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<typeof PairedSuccessfully>
export default meta
type Story = StoryObj<typeof meta>
export const PairedSuccessfullyExample: Story = {
args: {},
}