2019-10-20 19:34:17 +08:00

7 lines
186 B
JavaScript

import React from 'react';
import { DocgenButton } from './DocgenButton';
export const ForwardRefButton = React.forwardRef((props, ref) => (
<DocgenButton ref={ref} {...props} />
));