import React from 'react'; import { Button, Row, Col, Card, List, Popconfirm, Tree, Space, Modal } from 'antd'; import List from './list'; export default (props) => { const treeData = [ { title: 'parent 1', key: '0-0', children: [ { title: 'parent 1-0', key: '0-0-0', disabled: true, children: [ { title: 'leaf', key: '0-0-0-0', disableCheckbox: true, }, { title: 'leaf', key: '0-0-0-1', }, ], }, { title: 'parent 1-1', key: '0-0-1', children: [ { title: ( sss ), key: '0-0-1-0', }, ], }, ], }, ]; const onSelect = (selectedKeys, info) => { console.log('selected', selectedKeys, info); }; const onCheck = (checkedKeys, info) => { console.log('onCheck', checkedKeys, info); }; return (
保存}>
) }