mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
Consolidate forwardRef button components & fix MemoButton so its render fn has a displayName.
6 lines
118 B
JavaScript
6 lines
118 B
JavaScript
import React from 'react';
|
|
|
|
import BaseButton from './BaseButton';
|
|
|
|
export const MemoButton = React.memo(BaseButton);
|