fix: remove react @types (#2539)

This commit is contained in:
Yury Molodov 2022-05-05 21:17:41 +03:00 committed by Aliaksandr Valialkin
parent 53b68eb254
commit eba02163fe
No known key found for this signature in database
GPG key ID: A72BEC6CD3D0DED1
3 changed files with 333 additions and 388 deletions

File diff suppressed because it is too large Load diff

View file

@ -19,9 +19,6 @@
"@types/marked": "^4.0.2",
"@types/node": "^17.0.21",
"@types/qs": "^6.9.7",
"@types/react": "^17.0.43",
"@types/react-dom": "^18.0.0",
"@types/react-measure": "^2.0.8",
"@types/react-router-dom": "^5.3.3",
"@types/webpack-env": "^1.16.3",
"dayjs": "^1.11.0",

View file

@ -1,7 +1,9 @@
import React from "preact/compat";
import Box from "@mui/material/Box";
import {ReactNode} from "react";
interface TabPanelProps {
children?: ReactNode;
index: number;
value: number;
}