refactor(stories) fix Device Health Check stories

This commit is contained in:
Hristo Nedelkov 2024-03-18 19:46:33 +02:00
parent cd04293abb
commit 69c4f23e38
1 changed files with 2 additions and 1 deletions

View File

@ -1,11 +1,12 @@
import type { Meta, StoryObj } from '@storybook/react'
import DeviceHealthCheck from './DeviceHealthCheck'
import { withRouter } from 'storybook-addon-react-router-v6'
const meta: Meta = {
title: 'Pages/DeviceHealthCheck',
component: DeviceHealthCheck,
decorators: [],
decorators: [withRouter],
tags: ['autodocs'],
}