From af25a089e26e54c31b5a7098f65496574617e541 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Mon, 14 Aug 2023 10:44:10 +0300 Subject: [PATCH] feat: add basic story for DeviceHealthCheck page --- .../DeviceHealthCheck.stories.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/pages/DeviceHealthCheck/DeviceHealthCheck.stories.tsx diff --git a/src/pages/DeviceHealthCheck/DeviceHealthCheck.stories.tsx b/src/pages/DeviceHealthCheck/DeviceHealthCheck.stories.tsx new file mode 100644 index 00000000..30828e76 --- /dev/null +++ b/src/pages/DeviceHealthCheck/DeviceHealthCheck.stories.tsx @@ -0,0 +1,16 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import DeviceHealthCheck from './DeviceHealthCheck' + +const meta = { + title: 'Pages/DeviceHealthCheck', + component: DeviceHealthCheck, + tags: ['autodocs'], +} satisfies Meta + +export default meta +type Story = StoryObj + +export const Page: Story = { + args: {}, +}