Organize imports in arrangements-table.tsx

This commit is contained in:
Manuel Bustillo 2025-09-21 19:43:31 +02:00
parent b40d50d9c1
commit 043b763ad7
No known key found for this signature in database
GPG Key ID: A74BD9E346A80DDC

View File

@ -2,18 +2,12 @@
'use client'
import React, { useState } from "react"
import { TableArrangement } from '@/app/lib/definitions';
import { classNames } from "../components/button";
import TableOfContents from "../components/table-of-contents";
import { loadTableSimulations } from "@/app/api/tableSimulations";
import { ArchiveBoxXMarkIcon, ArrowsPointingOutIcon, CheckBadgeIcon } from "@heroicons/react/24/outline";
import { Tooltip } from "primereact/tooltip";
import { TableArrangement } from '@/app/lib/definitions';
import { ArrowsPointingOutIcon } from "@heroicons/react/24/outline";
import clsx from "clsx";
import { ProgressBar } from "primereact/progressbar";
import { useEffect } from "react";
import { TableSimulation, TableSimulationSerializer } from "@/app/lib/tableSimulation";
import { AbstractApi } from "@/app/api/abstract-api";
import { useEffect, useState } from "react";
import TableOfContents from "../components/table-of-contents";
export default function ArrangementsTable({ onArrangementSelected }: { onArrangementSelected: (arrangementId: string) => void }) {
const [arrangements, setArrangements] = useState<Array<TableArrangement>>([]);