You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If someone wants to change a single piece of a comment widget (the timestamp, for example) they have to completely re-write the render method of whatever class they have extending CommentWidget.
However, if all the react components that make up a comment widget are moved into protected methods of CommentWidget, only a single component method needs to be overridden (renderTimestamp, for example).
The text was updated successfully, but these errors were encountered:
If someone wants to change a single piece of a comment widget (the timestamp, for example) they have to completely re-write the
render
method of whatever class they have extendingCommentWidget
.However, if all the react components that make up a comment widget are moved into protected methods of
CommentWidget
, only a single component method needs to be overridden (renderTimestamp
, for example).The text was updated successfully, but these errors were encountered: