c6391b3986
* [plugin-sdk-generic-component] - generic component extensible area and ui command layout set * [plugin-generic-component] - update sdk * [plugin-generic-component] - fix lint errors * [plugin-generic-component] - fix problem warned by CI tests
27 lines
547 B
TypeScript
27 lines
547 B
TypeScript
import React, { useEffect, useRef } from 'react';
|
|
import { GenericComponentItemProps } from './types';
|
|
|
|
const GenericComponentItem: React.FC<GenericComponentItemProps> = (props) => {
|
|
const {
|
|
renderFunction,
|
|
} = props;
|
|
const elementRef = useRef(null);
|
|
|
|
useEffect(() => {
|
|
if (elementRef.current && renderFunction) {
|
|
renderFunction(elementRef.current);
|
|
}
|
|
}, [elementRef]);
|
|
|
|
return (
|
|
<div
|
|
style={{
|
|
overflow: 'hidden',
|
|
}}
|
|
ref={elementRef}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default GenericComponentItem;
|