\n Id\n
\n ),\n key: \"id\",\n render: (text: string, row: any, index: number) => (\n\n \n showBrand(row)}\n style={{ padding: 0, borderWidth: 0, color: \"#9254de\", fontWeight: \"bold\", fontSize: \"small\" }}\n >\n #{row.id}\n \n \n
\n ),\n },\n {\n title: (\n\n {t(\"global.brand\", \"Marka\")}\n
\n ),\n dataIndex: \"name\",\n key: \"name\",\n render: (text: string, row: any, index: number) => (\n\n \n \n {\" \"}\n {text}{\" \"}\n \n \n
\n ),\n },\n {\n title: (\n\n {t(\"global.sector\")}\n
\n ),\n dataIndex: \"sector\",\n key: \"sector\",\n render: (text: string, row: any, index: number) => (\n\n {text}\n
\n ),\n },\n {\n title: (\n\n {t(\"global.country\")}\n
\n ),\n dataIndex: \"country\",\n key: \"country\",\n render: (text: string, row: any, index: number) => (\n\n {text}\n
\n ),\n },\n {\n title: (\n\n {t(\"global.contact-number\")}\n
\n ),\n dataIndex: \"phoneNumber\",\n key: \"phone\",\n render: (text: string, row: any, index: number) => (\n\n {text}\n
\n ),\n },\n {\n title: (\n\n {t(\"global.contact-email\")}\n
\n ),\n dataIndex: \"email\",\n key: \"email\",\n render: (text: string, row: any, index: number) => {text},\n },\n {\n title: (\n\n {t(\"pages.brand.statu\")}\n
\n ),\n dataIndex: \"status\",\n key: \"status\",\n render: (text: string, row: any, index: number) => {\n return\n {t(\"global.action\")}\n
\n ),\n render: (text: string, row: any, index: number) => (\n\n \n \n {t(\"campaign.create.result.secondaryButton\")}\n \n \n
\n ),\n },\n ];\n\n return [columns] as const;\n};\n","import { Col, Form, Row, Space, Table } from \"@pankod/refine\";\nimport { FunctionComponent } from \"react\";\nimport { useList } from \"./hooks\";\n\ninterface ListComponentProps {\n data: any[];\n onPageChange: any;\n pagination: any;\n dataLoading: any;\n}\n\nexport const List: FunctionComponent