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

@@ -2,12 +2,12 @@ import { styled } from "@mui/material";
import { ChevronLeft, ChevronRight, Menu, Plus } from "lucide-react";
import { useState } from "react";
import { useTranslation } from "react-i18next";
import { NAVIGATION_HEIGH } from "../constants";
import { StyledButton } from "../toolbar";
import type { WorkbookState } from "../workbookState";
import SheetListMenu from "./menus";
import Sheet from "./sheet";
import type { SheetOptions } from "./types";
import { NAVIGATION_HEIGH } from "../constants";
export interface NavigationProps {
sheets: SheetOptions[];