fix: import React before using jsx (#3804)

This commit is contained in:
Aakansha Doshi 2021-07-05 15:59:09 +05:30 committed by GitHub
parent 77aae63006
commit e3e967421e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,4 @@
import React from "react";
import clsx from "clsx"; import clsx from "clsx";
import { checkIcon } from "./icons"; import { checkIcon } from "./icons";

View File

@ -1,3 +1,4 @@
import React from "react";
import clsx from "clsx"; import clsx from "clsx";
import { t } from "../i18n"; import { t } from "../i18n";
import { AppState } from "../types"; import { AppState } from "../types";