CODEBASE: Expand lint rules, and Aliases are stored as maps (#501)

This commit is contained in:
Snarling
2023-05-05 03:55:59 -04:00
committed by GitHub
parent d25254caf1
commit ebae35b1fb
202 changed files with 905 additions and 1110 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ import React, { useState } from "react";
import Typography from "@mui/material/Typography";
import Tooltip from "@mui/material/Tooltip";
type IProps = {
interface IProps {
value: string;
color?: string;
variant?:
@@ -21,7 +21,7 @@ type IProps = {
| "overline"
| "inherit"
| undefined;
};
}
export function CopyableText(props: IProps): React.ReactElement {
const [open, setOpen] = useState(false);