diff --git a/src/utils/ViewHeightSensor.test.tsx b/src/components/ViewHeightSensor.test.tsx similarity index 100% rename from src/utils/ViewHeightSensor.test.tsx rename to src/components/ViewHeightSensor.test.tsx diff --git a/src/utils/ViewHeightSensor.tsx b/src/components/ViewHeightSensor.tsx similarity index 100% rename from src/utils/ViewHeightSensor.tsx rename to src/components/ViewHeightSensor.tsx diff --git a/src/index.tsx b/src/index.tsx index e842f4c6..6370d73f 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -13,13 +13,13 @@ import { createLogger } from 'redux-logger'; import createSagaMiddleware from 'redux-saga'; import App from './app/App'; import { appVersion } from './app/constants'; +import ViewHeightSensor from './components/ViewHeightSensor'; import { db } from './fileStorage/context'; import { i18nManager } from './i18n'; import { rootReducer } from './reducers'; import reportWebVitals from './reportWebVitals'; import rootSaga, { RootSagaContext } from './sagas'; import { defaultTerminalContext } from './terminal/TerminalContext'; -import ViewHeightSensor from './utils/ViewHeightSensor'; import { createCountFunc } from './utils/iter'; const toasterRef = React.createRef();