Import React to appease IDE linter (#8817)

Apparently we shouldn't be using global references to React, so import it.
This commit is contained in:
Travis Ralston 2022-06-11 15:17:55 -06:00 committed by GitHub
parent ba2ce5ecba
commit b5e18064ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,6 +17,7 @@ limitations under the License.
import { Room } from "matrix-js-sdk/src/models/room";
import { IContent, MatrixEvent } from "matrix-js-sdk/src/models/event";
import { logger } from "matrix-js-sdk/src/logger";
import React from "react";
import Exporter from "./Exporter";
import { formatFullDateNoDay } from "../../DateUtils";