import React from "react"; import { BaseRecord } from "@refinedev/core"; import { EditButton, DeleteButton } from "@refinedev/antd"; import { Table, Space } from "antd"; import { SmartList } from "@cundi/refine-xaf"; import { useTranslation } from "react-i18next"; export const ArticleList: React.FC = () => { const { t } = useTranslation(); return ( ( {value?.length > 50 ? `${value.substring(0, 50)}...` : value} )} // @ts-ignore defaultVisible /> ( )} /> ); };