//import { LstCard } from "@/components/extendedUI/LstCard"; import { getPPOO } from "@/utils/querys/logistics/getPPOO"; import { columns } from "@/utils/tableData/ppoo/ppooColumns"; import { PPOOTable } from "@/utils/tableData/ppoo/ppooData"; import { useQuery } from "@tanstack/react-query"; //import { CircleX } from "lucide-react"; //import { Suspense } from "react"; //import { toast } from "sonner"; export default function PPOO() { //{ style = {} } const { data, isError, isLoading } = useQuery(getPPOO()); if (isLoading) return
Loading adjustmnet data...
; if (isError) { return (

There was an error getting the adjustments.

); } // const handleCloseCard = () => { // //removeCard("PPOO"); // toast.success("card removed"); // }; return ( ); // return ( //
// // Loading PPOO...

}> //
//

// PPOO //

// //
// //
//
//
// ); }