mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 05:11:08 +08:00
Addon-links: Fix return type of linkTo and examples (#8975)
Addon-links: Fix return type of linkTo and examples
This commit is contained in:
commit
555a67e7ef
@ -36,7 +36,7 @@ const valueOrCall = (args: string[]) => (value: string | ((...args: string[]) =>
|
|||||||
export const linkTo = (
|
export const linkTo = (
|
||||||
idOrKindInput: string,
|
idOrKindInput: string,
|
||||||
storyInput?: string | ((...args: any[]) => string)
|
storyInput?: string | ((...args: any[]) => string)
|
||||||
) => (...args: string[]) => {
|
) => (...args: any[]) => {
|
||||||
const resolver = valueOrCall(args);
|
const resolver = valueOrCall(args);
|
||||||
const { storyId } = storyStore.getSelection();
|
const { storyId } = storyStore.getSelection();
|
||||||
const current = storyStore.fromId(storyId) || {};
|
const current = storyStore.fromId(storyId) || {};
|
||||||
|
@ -6,13 +6,13 @@ export default {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const First = () => (
|
export const First = () => (
|
||||||
<button type="button" onClick={linkTo('Addons|Links.Button', 'Second')}>
|
<button type="button" onClick={linkTo('Addons/Links/Button', 'Second')}>
|
||||||
Go to "Second"
|
Go to "Second"
|
||||||
</button>
|
</button>
|
||||||
);
|
);
|
||||||
|
|
||||||
export const Second = () => (
|
export const Second = () => (
|
||||||
<button type="button" onClick={linkTo('Addons|Links.Button', 'First')}>
|
<button type="button" onClick={linkTo('Addons/Links/Button', 'First')}>
|
||||||
Go to "First"
|
Go to "First"
|
||||||
</button>
|
</button>
|
||||||
);
|
);
|
Loading…
x
Reference in New Issue
Block a user