components: move ViewHeightSensor

we've moved all of the other components already
This commit is contained in:
David Lechner
2022-11-29 10:59:15 -06:00
committed by David Lechner
parent 670f4a0d07
commit 49f3c5d8f3
3 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -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<Toaster>();