UNPKG

matrix-react-sdk

Version:
19 lines (18 loc) 517 B
import React, { ReactNode } from "react"; import { Room } from "matrix-js-sdk/src/matrix"; import ResizeNotifier from "../../../utils/ResizeNotifier"; interface IProps { room: Room; userId: string; showApps: boolean; resizeNotifier: ResizeNotifier; children?: ReactNode; } export default class AuxPanel extends React.Component<IProps> { static defaultProps: { showApps: boolean; }; shouldComponentUpdate(nextProps: IProps): boolean; render(): React.ReactNode; } export {};