Migrate UnknownBody to TypeScript

pull/21833/head
Germain Souquet 2021-06-30 09:00:14 +01:00
parent d9eec1c03b
commit 6b9dfa37c5
1 changed files with 7 additions and 1 deletions

View File

@ -16,8 +16,14 @@ limitations under the License.
*/ */
import React, { forwardRef } from "react"; import React, { forwardRef } from "react";
import { MatrixEvent } from "matrix-js-sdk/src";
export default forwardRef(({ mxEvent, children }, ref) => { interface IProps {
mxEvent: MatrixEvent;
children?: React.ReactNode;
}
export default forwardRef(({ mxEvent, children }: IProps, ref: React.RefObject<HTMLSpanElement>) => {
const text = mxEvent.getContent().body; const text = mxEvent.getContent().body;
return ( return (
<span className="mx_UnknownBody" ref={ref}> <span className="mx_UnknownBody" ref={ref}>