From c6f47aade78315226700245b0a8ef7e50bb636ce Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Fri, 15 Mar 2024 22:02:54 +0200 Subject: [PATCH] feat(devices-health-check): create story --- .../DeviceHealthCheck.stories.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/pages/DevicesHealthCheck/DeviceHealthCheck.stories.tsx diff --git a/src/pages/DevicesHealthCheck/DeviceHealthCheck.stories.tsx b/src/pages/DevicesHealthCheck/DeviceHealthCheck.stories.tsx new file mode 100644 index 00000000..8fbbbc88 --- /dev/null +++ b/src/pages/DevicesHealthCheck/DeviceHealthCheck.stories.tsx @@ -0,0 +1,18 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import DevicesHealthCheck from './DevicesHealthCheck' + +const meta: Meta = { + title: 'Pages/DevicesHealthCheck', + component: DevicesHealthCheck, + decorators: [], + tags: ['autodocs'], +} + +export default meta + +type DevicesHealthCheckStory = StoryObj + +export const Page: DevicesHealthCheckStory = { + args: {}, +}