@cainiaofe/cn-ui-m
Version:
10 lines (9 loc) • 494 B
JavaScript
import * as React from 'react';
import { CnDemoPage, CnDemoBlock, CnInput } from "../../..";
export var 数字 = function () {
return (React.createElement(CnDemoPage, { title: "\u6570\u5B57" },
React.createElement(CnDemoBlock, { title: "\u6570\u5B57" },
React.createElement(CnDemoPage, null,
React.createElement(CnInput, { htmlType: "number", maxLength: 10, showLimitHint: true, onChange: console.log })))));
};
export default { title: 'demo/CnInput' };