mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-23 12:13:11 +00:00
4 lines
117 B
JavaScript
4 lines
117 B
JavaScript
const WrappedComponent = React.forwardRef((props, ref) => {
|
|
return <LogProps {...props} forwardedRef={ref} />;
|
|
});
|