1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-25 17:02:04 +03:00

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

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";