import React from "react"; import { Table, Button, Radio } from "antd"; import { EditOutlined } from "@ant-design/icons"; const TemplateList = ({ tempListData, selectedTemplate, onTemplateSelect, onAddTemplate, onEditTemplate, }) => { const tempColumns = [ { title: "模板选择", dataIndex: "name", key: "name", render: (text, record) => (
onTemplateSelect(record.key)} style={{ marginRight: "12px" }} /> {text} {record.imageUrl && ( {`${text} )}
), }, ]; return (
{tempListData.length < 3 && ( )} ); }; export default TemplateList;