Remove unnecessary constructor

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-07-13 08:46:45 +02:00
parent ae5e10ff0c
commit 04098dc74c
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 1 additions and 5 deletions

View File

@ -15,16 +15,12 @@ limitations under the License.
*/
import React from "react";
import MImageBody, { IProps as MImageBodyIProps } from "./MImageBody";
import MImageBody from "./MImageBody";
import { presentableTextForFile } from "./MFileBody";
import { IMediaEventContent } from "../../../customisations/models/IMediaEventContent";
import SenderProfile from "./SenderProfile";
export default class MImageReplyBody extends MImageBody {
constructor(props: MImageBodyIProps) {
super(props);
}
public onClick = (ev: React.MouseEvent): void => {
ev.preventDefault();
};