PropTypes and refactoring

This commit is contained in:
2021-05-04 21:59:52 -05:00
parent ace51f61d1
commit 3227f289f1
7 changed files with 260 additions and 231 deletions

View File

@@ -3,7 +3,7 @@ import { getIPCRenderer } from '../../utils.jsx';
const ipcRenderer = getIPCRenderer();
export default class IPCContainer extends Component {
class IPCContainer extends Component {
handlerList = {};
componentWillUnmount() {
@@ -42,3 +42,5 @@ export default class IPCContainer extends Component {
}
};
}
export default IPCContainer;