From 156f1774978b0d06bc83ffd03f1c74aea93f391a Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Thu, 17 Aug 2023 17:59:17 +0300 Subject: [PATCH] feat: add story for successfully paired --- .../PairDevice/PairedSuccessfully.stories.tsx | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/pages/PairDevice/PairedSuccessfully.stories.tsx 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: {}, +}