fix: add with router at sync part from pair page

This commit is contained in:
RadoslavDimchev 2023-08-22 13:46:45 +03:00
parent 91cae3f39d
commit b8c191abf8

View File

@ -1,6 +1,7 @@
import type { Meta, StoryObj } from '@storybook/react'
import SyncStatus from './SyncStatus'
import { withRouter } from 'storybook-addon-react-router-v6'
const meta = {
title: 'Pair Device/SyncStatus',
@ -10,6 +11,7 @@ const meta = {
},
tags: ['autodocs'],
argTypes: {},
decorators: [withRouter],
} satisfies Meta<typeof SyncStatus>
export default meta