mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
Use Link component instead of raw <a>
This commit is contained in:
parent
6505ec2bfa
commit
65239eefd4
@ -6,7 +6,7 @@ import { styled } from '@storybook/theming';
|
||||
import copy from 'copy-to-clipboard';
|
||||
|
||||
import { STORY_CHANGED } from '@storybook/core-events';
|
||||
import { Placeholder, TabWrapper, TabsState, ActionBar } from '@storybook/components';
|
||||
import { Placeholder, TabWrapper, TabsState, ActionBar, Link } from '@storybook/components';
|
||||
import { RESET, SET, CHANGE, SET_OPTIONS, CLICK } from '../shared';
|
||||
|
||||
import Types from './types';
|
||||
@ -174,13 +174,12 @@ export default class KnobPanel extends PureComponent {
|
||||
<Fragment>No knobs found</Fragment>
|
||||
<Fragment>
|
||||
Learn how to{' '}
|
||||
<a
|
||||
<Link
|
||||
href="https://github.com/storybooks/storybook/tree/master/addons/knobs"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
dynamically interact with components
|
||||
</a>{' '}
|
||||
</Link>{' '}
|
||||
using knobs.
|
||||
</Fragment>
|
||||
</Placeholder>
|
||||
|
@ -88,13 +88,9 @@ const SidebarStories = React.memo(({ stories, storyId, loading, className, ...re
|
||||
<Fragment key="title">No stories found</Fragment>
|
||||
<Fragment>
|
||||
Learn how to{' '}
|
||||
<a
|
||||
href="https://storybook.js.org/basics/writing-stories/"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
<Link href="https://storybook.js.org/basics/writing-stories/" target="_blank">
|
||||
write stories
|
||||
</a>
|
||||
</Link>
|
||||
</Fragment>
|
||||
</Placeholder>
|
||||
</Wrapper>
|
||||
|
Loading…
x
Reference in New Issue
Block a user