FIX: Proper imports

This commit is contained in:
Nicolás Hatcher
2024-10-08 20:59:27 +02:00
committed by Nicolás Hatcher Andrés
parent 8c0a566995
commit b495397b5f
4 changed files with 8 additions and 4 deletions

View File

@@ -6,11 +6,15 @@ import {
outlineColor,
} from "./WorksheetCanvas/constants";
import WorksheetCanvas from "./WorksheetCanvas/worksheetCanvas";
import {
FORMULA_BAR_HEIGH,
NAVIGATION_HEIGH,
TOOLBAR_HEIGH,
} from "./constants";
import Editor from "./editor/editor";
import type { Cell } from "./types";
import usePointer from "./usePointer";
import { AreaType, type WorkbookState } from "./workbookState";
import { FORMULA_BAR_HEIGH, NAVIGATION_HEIGH, TOOLBAR_HEIGH } from "./constants";
function useWindowSize() {
const [size, setSize] = useState([0, 0]);