mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-22 20:01:57 +00:00
6 lines
141 B
JavaScript
6 lines
141 B
JavaScript
const WrappedComponent = React.forwardRef(
|
|
function myFunction(props, ref) {
|
|
return <LogProps {...props} forwardedRef={ref} />;
|
|
}
|
|
);
|