mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
7 lines
186 B
JavaScript
7 lines
186 B
JavaScript
import React from 'react';
|
|
import { DocgenButton } from './DocgenButton';
|
|
|
|
export const ForwardRefButton = React.forwardRef((props, ref) => (
|
|
<DocgenButton ref={ref} {...props} />
|
|
));
|