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