I am unable to render updated props in functional component. However, I am able to console.log those props perfectly.
My Code:
class ABC extends someOtherClass {
 static create(value) {
    let node = super.create();
    node.setAttribute('style', 'font-size:100%; color: white');
    node.setAttribute('id', Date.now());
    node.onclick = function(e) {
      HandleComments({ id: e.target.id, render: e.target.id });
    };
    return node;
  }
}
HandleComments Component
import React from 'react';
const HandleComments = props => {
  console.log('props', props);
  return <div>{props.id}</div>;
};
export default HandleComments;
 
    