mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:41:25 +08:00
13 lines
418 B
JavaScript
13 lines
418 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,
|
|
};
|
|
|
|
export const displaysCorrectly = () => <ButtonWithMemo>Hello World!</ButtonWithMemo>;
|
|
displaysCorrectly.story = { name: 'Displays components with memo correctly' };
|