@cainiaofe/cn-ui-m
Version:
21 lines (20 loc) • 782 B
JavaScript
import React from 'react';
import { CnCardItems, CnDialog, CnDemoPage } from "../../..";
export var 空数据 = function () {
return (React.createElement(CnDemoPage, { title: "\u7A7A\u6570\u636E" },
React.createElement(CnCardItems, { emptyContent: "", toolbar: {
buttons: [
{
children: '新增',
type: 'primary',
onClick: function () {
CnDialog.show({
title: '新增',
content: '测试新增数据',
});
},
},
],
} })));
};
export default { title: 'demo/CnCardItems' };