ref(redux) Remove connect wrapper (#13083)

This commit is contained in:
Robert Pintilii
2023-03-21 09:47:52 +02:00
committed by GitHub
parent 679711534a
commit 754f658489
270 changed files with 451 additions and 444 deletions

View File

@@ -1,10 +1,10 @@
import React, { Component, ComponentType } from 'react';
import { connect } from 'react-redux';
import { IReduxState } from '../../../../app/types';
import { IReactionEmojiProps } from '../../../../reactions/constants';
import JitsiPortal from '../../../../toolbox/components/web/JitsiPortal';
import { showOverflowDrawer } from '../../../../toolbox/functions.web';
import { connect } from '../../../redux/functions';
import DialogTransition from './DialogTransition';
@@ -13,12 +13,12 @@ interface IProps {
/**
* The component to render.
*/
_component: ComponentType;
_component?: ComponentType;
/**
* The props to pass to the component that will be rendered.
*/
_componentProps: Object;
_componentProps?: Object;
/**
* Whether the overflow drawer should be used.