Organize imports in arrangements-table.tsx
This commit is contained in:
parent
b40d50d9c1
commit
043b763ad7
@ -2,18 +2,12 @@
|
|||||||
|
|
||||||
'use client'
|
'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 { loadTableSimulations } from "@/app/api/tableSimulations";
|
||||||
import { ArchiveBoxXMarkIcon, ArrowsPointingOutIcon, CheckBadgeIcon } from "@heroicons/react/24/outline";
|
import { TableArrangement } from '@/app/lib/definitions';
|
||||||
import { Tooltip } from "primereact/tooltip";
|
import { ArrowsPointingOutIcon } from "@heroicons/react/24/outline";
|
||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
import { ProgressBar } from "primereact/progressbar";
|
import { useEffect, useState } from "react";
|
||||||
import { useEffect } from "react";
|
import TableOfContents from "../components/table-of-contents";
|
||||||
import { TableSimulation, TableSimulationSerializer } from "@/app/lib/tableSimulation";
|
|
||||||
import { AbstractApi } from "@/app/api/abstract-api";
|
|
||||||
|
|
||||||
export default function ArrangementsTable({ onArrangementSelected }: { onArrangementSelected: (arrangementId: string) => void }) {
|
export default function ArrangementsTable({ onArrangementSelected }: { onArrangementSelected: (arrangementId: string) => void }) {
|
||||||
const [arrangements, setArrangements] = useState<Array<TableArrangement>>([]);
|
const [arrangements, setArrangements] = useState<Array<TableArrangement>>([]);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user