sync bank card api and complete it
This commit is contained in:
@@ -1,19 +1,17 @@
|
||||
import { useQuery } from "@tanstack/react-query"
|
||||
import { installationReportsCol } from "../../utility/reports"
|
||||
import { Table } from "../common/table"
|
||||
import { getReportsList } from "../../services/api/reports"
|
||||
import { useState } from "react"
|
||||
import { SortingState } from "@tanstack/react-table"
|
||||
|
||||
export const InstallationReports = () => {
|
||||
const [sorting, setSorting] = useState<SortingState>([])
|
||||
const { data, isLoading } = useQuery({
|
||||
queryKey: ["installation-reports-list"],
|
||||
queryFn: getReportsList
|
||||
})
|
||||
// const { data, isLoading } = useQuery({
|
||||
// queryKey: ["installation-reports-list"],
|
||||
// queryFn: getReportsList
|
||||
// })
|
||||
|
||||
if (isLoading) return <p>LODING .....</p>
|
||||
// if (isLoading) return <p>LODING .....</p>
|
||||
return (
|
||||
<Table columns={installationReportsCol} data={data?.data} sorting={sorting} setSorting={setSorting} />
|
||||
<Table columns={installationReportsCol} data={[]} sorting={sorting} setSorting={setSorting} />
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user