Skip to content

Commit

Permalink
Fix missing React imports, waiting on React 18 #6902
Browse files Browse the repository at this point in the history
  • Loading branch information
steve9164 committed Oct 25, 2023
1 parent f10f0c7 commit 7a0f209
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/ReactViews/Map/BottomLeftBar/BottomLeftBar.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { observer } from "mobx-react";
import { FC } from "react";
import React, { FC } from "react";
import { useTranslation } from "react-i18next";
import styled, { useTheme } from "styled-components";
import defined from "terriajs-cesium/Source/Core/defined";
Expand Down
2 changes: 1 addition & 1 deletion lib/ReactViews/Map/ProgressBar.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { observer } from "mobx-react";
import { VFC, useCallback, useEffect, useState } from "react";
import React, { VFC, useCallback, useEffect, useState } from "react";
import styled, { css, keyframes, useTheme } from "styled-components";
import EventHelper from "terriajs-cesium/Source/Core/EventHelper";
import { useViewState } from "../Context";
Expand Down

0 comments on commit 7a0f209

Please sign in to comment.