fix(markdown-link-story): missed new url constant import

This commit is contained in:
RadoslavDimchev 2024-04-11 15:56:00 +03:00 committed by Radoslav Dimchev
parent 5336c91965
commit 9d70d3e3c0

View File

@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react'
import { withRouter } from 'storybook-addon-react-router-v6'
import MarkdownLink from './MarkdownLink'
import { LANDING } from '../../../constants'
import { PATHS } from '../../../constants'
const meta = {
title: 'General/MarkdownLink',
@ -19,7 +19,7 @@ type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {
href: LANDING,
href: PATHS.LANDING,
children: 'MarkdownLink',
},
}