mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-20 16:22:56 +02:00
all the lints
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user