mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
14 lines
466 B
JavaScript
14 lines
466 B
JavaScript
import React from 'react';
|
|
import { DocgenButton } from '../../components/DocgenButton';
|
|
|
|
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>;
|
|
displaysCorrectly.story = { name: 'Displays components with memo correctly' };
|