We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83c8284 commit 1a73a83Copy full SHA for 1a73a83
src/app/components/RenderingFrequency.tsx
@@ -2,7 +2,6 @@
2
/* eslint-disable jsx-a11y/no-static-element-interactions */
3
/* eslint-disable react/prop-types */
4
import React, { useState, useEffect } from 'react';
5
-import { render } from 'react-dom';
6
import { onHover, onHoverExit, setCurrentTabInApp } from '../actions/actions';
7
import { useStoreContext } from '../store';
8
@@ -35,13 +34,12 @@ const RenderingFrequency = props => {
35
34
);
36
};
37
38
-const ComponentCard = props => {
+const ComponentCard = (props): JSX.Element => {
39
const {
40
componentName,
41
stateType,
42
averageRenderTime,
43
renderFrequency,
44
- rtid,
45
information,
46
} = props;
47
const [{ tabs, currentTab }, dispatch] = useStoreContext();
0 commit comments