UNPKG

@alicloud/console-components

Version:

Alibaba Cloud React Components

21 lines (20 loc) 713 B
/** * title: "基础形态交互(以从左向右配置为例)" * description: "基础交互形态。" */ import React from 'react'; import { Range } from '@alicloud/console-components'; var style = { marginBottom: '15px', }; var h4Style = { fontSize: '12px', marginTop: '24px', }; export default (function () { return (React.createElement("div", null, React.createElement("h4", { style: h4Style }, "\u9ED8\u8BA4"), React.createElement(Range, { defaultValue: 4, style: style, max: 10, hasTip: true }), React.createElement("h4", { style: h4Style }, "\u7981\u7528"), React.createElement(Range, { defaultValue: 4, style: style, max: 10, disabled: true }))); });