react-keep-alive
Version:
Package will allow components to maintain their status, to avoid repeated re-rendering.
19 lines (18 loc) • 500 B
TypeScript
import * as React from 'react';
interface IReactCommentProps {
onLoaded: () => void;
}
declare class ReactComment extends React.PureComponent<IReactCommentProps> {
static defaultProps: {
onLoaded: () => undefined;
};
private parentNode;
private currentNode;
private commentNode;
private content;
componentDidMount(): void;
componentWillUnmount(): void;
private createComment;
render(): JSX.Element;
}
export default ReactComment;