import React from "react"; import { IResourceComponentsProps, BaseRecord } from "@refinedev/core"; import { useTable, List, EditButton, ShowButton, DateField, NumberField, } from "@refinedev/antd"; import { Table, Space } from "antd"; export const FilamentList: React.FC = () => { const { tableProps } = useTable({ syncWithLocation: true, }); return ( ( )} /> ( )} /> ( )} /> ( )} /> ( )} /> ( )} />
); };