Disable prop table tests in chromatic

This commit is contained in:
Michael Shilman 2020-01-11 15:39:05 +08:00
parent b3f08866b1
commit 8fd9aa0140
2 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@ const ForwardedButton = React.forwardRef((props, ref) => <DocgenButton ref={ref}
export default {
title: 'Addons|Docs/ForwardRef',
component: ForwardedButton,
parameters: { chromatic: { disable: true } },
};
export const displaysCorrectly = () => <ForwardedButton>Hello World!</ForwardedButton>;

View File

@ -6,6 +6,7 @@ const ButtonWithMemo = React.memo(props => <DocgenButton {...props} />);
export default {
title: 'Addons|Docs/ButtonWithMemo',
component: ButtonWithMemo,
parameters: { chromatic: { disable: true } },
};
export const displaysCorrectly = () => <ButtonWithMemo>Hello World!</ButtonWithMemo>;