matrix-react-sdk
Version:
SDK for matrix.org using React
19 lines (18 loc) • 517 B
TypeScript
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 {};