mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
6 lines
142 B
JavaScript
6 lines
142 B
JavaScript
|
const React = require('react');
|
||
|
|
||
|
exports['default'] = React.forwardRef((props, ref) =>
|
||
|
React.createElement('icon-mock', {ref, ...props})
|
||
|
);
|