all the lints

This commit is contained in:
Olivier Gagnon
2021-05-01 03:17:31 -04:00
parent abe0330dc3
commit d745150c45
231 changed files with 1458 additions and 1439 deletions
+2 -2
View File
@@ -4,13 +4,13 @@
import * as React from "react";
export interface IParagraphWithTooltipProps {
style?: object;
style?: any;
content: JSX.Element;
tooltip: string;
}
export class ParagraphWithTooltip extends React.Component<IParagraphWithTooltipProps, any> {
render() {
render(): React.ReactNode {
return (
<p className={"tooltip"} style={this.props.style}>
{this.props.content}