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: {}, +}