fix: landing page story

This commit is contained in:
RadoslavDimchev 2023-08-22 13:12:23 +03:00
parent 43cd20af57
commit 4a851108ca
1 changed files with 2 additions and 0 deletions

View File

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