feat(devices-health-check): create story
This commit is contained in:
parent
0219fdcc8d
commit
c6f47aade7
|
@ -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<typeof DevicesHealthCheck>
|
||||
|
||||
export const Page: DevicesHealthCheckStory = {
|
||||
args: {},
|
||||
}
|
Loading…
Reference in New Issue