@sinoform/comp-config-item
v1.17.0
Published
表单字段项配置布局组件。
Downloads
67
Keywords
Readme
@sinoform/comp-config-item
表单字段项配置布局组件。
安装
yarn add @sinoform/comp-config-item
使用
import { TextInput, Label, Form } from '@sinoui/sinoui-components-forms';
import ConfigItem from '@sinoform/comp-config-item';
function SimpleDemo() {
return (
<Form>
<ConfigItem>
<Label>用户名</Label>
<TextInput />
</ConfigItem>
</Form>
);
}