fixed return type of linkTo and buttons examples

This commit is contained in:
atanasster 2019-11-26 21:03:39 -05:00
parent e098a12bf8
commit e2a81d293e
2 changed files with 3 additions and 3 deletions

View File

@ -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) || {};

View File

@ -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>
); );